summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/lib/rdoc/markup/paragraph.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/lib/rdoc/markup/paragraph.rb')
-rw-r--r--ruby_1_9_3/lib/rdoc/markup/paragraph.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/ruby_1_9_3/lib/rdoc/markup/paragraph.rb b/ruby_1_9_3/lib/rdoc/markup/paragraph.rb
new file mode 100644
index 0000000000..808430d576
--- /dev/null
+++ b/ruby_1_9_3/lib/rdoc/markup/paragraph.rb
@@ -0,0 +1,14 @@
+##
+# A Paragraph of text
+
+class RDoc::Markup::Paragraph < RDoc::Markup::Raw
+
+ ##
+ # Calls #accept_paragraph on +visitor+
+
+ def accept visitor
+ visitor.accept_paragraph self
+ end
+
+end
+