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
Adds verbatim to the output
# File lib/rdoc/markup/to_html_snippet.rb, line 103
def accept_verbatim verbatim
throw :done if @characters >= @character_limit
input = verbatim.text.rstrip
text = truncate input
text << ' ...' unless text == input
super RDoc::Markup::Verbatim.new text
add_paragraph
end