summaryrefslogtreecommitdiff
path: root/lib/rdoc/markup/block_quote.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/markup/block_quote.rb')
-rw-r--r--lib/rdoc/markup/block_quote.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/rdoc/markup/block_quote.rb b/lib/rdoc/markup/block_quote.rb
new file mode 100644
index 0000000000..552f0c4baa
--- /dev/null
+++ b/lib/rdoc/markup/block_quote.rb
@@ -0,0 +1,14 @@
+##
+# A quoted section which contains markup items.
+
+class RDoc::Markup::BlockQuote < RDoc::Markup::Raw
+
+ ##
+ # Calls #accept_block_quote on +visitor+
+
+ def accept visitor
+ visitor.accept_block_quote self
+ end
+
+end
+