accept_heading(heading)
Adds heading to the output
# File lib/rdoc/markup/to_rdoc.rb, line 98 def accept_heading heading use_prefix or @res << ' ' * @indent @res << @headings[heading.level][0] @res << attributes(heading.text) @res << @headings[heading.level][1] @res << "\n" end