Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
accept_block_quote(block_quote)
public
Adds paragraph to the output
# File lib/rdoc/markup/to_rdoc.rb, line 83
def accept_block_quote block_quote
@indent += 2
block_quote.parts.each do |part|
@prefix = '> '
part.accept self
end
@indent -= 2
end