accept_paragraph(paragraph)
Adds paragraph to the output
# File lib/rdoc/markup/to_html.rb, line 184 def accept_paragraph paragraph @res << "\n<p>" text = paragraph.text @hard_break text = text.gsub(/\r?\n/, ' ') @res << wrap(to_html(text)) @res << "</p>\n" end