handle_pipe()
public
Turns RDoc from stdin into HTML
# File lib/rdoc/rdoc.rb, line 131
def handle_pipe
@html = RDoc::Markup::ToHtml.new @options
parser = RDoc::Text::MARKUP_FORMAT[@options.markup]
document = parser.parse $stdin.read
out = @html.convert document
$stdout.write out
end