This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
accept_document(document)
public
Adds document to the output
# File lib/rdoc/markup/formatter.rb, line 68
def accept_document document
document.parts.each do |item|
case item
when RDoc::Markup::Document then # HACK
accept_document item
else
item.accept self
end
end
end