accept_document(document)
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