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_verbatim(verbatim)
public
Outputs `verbatim` indented 4 columns
# File lib/rdoc/markup/to_markdown.rb, line 125
def accept_verbatim verbatim
indent = ' ' * (@indent + 4)
verbatim.parts.each do |part|
@res << indent unless part == "\n"
@res << part
end
@res << "\n" unless @res =~ /\n\z/
end