accept_heading(heading)
Adds heading to the output
# File lib/rdoc/markup/to_html.rb, line 213 def accept_heading(heading) @res << "\n<h#{heading.level}>" @res << to_html(heading.text) @res << "</h#{heading.level}>\n" end