blob: 552f0c4baad35019ff93faa1a76e9498118ec7ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
  |