method

accept_heading

v1_9_2_180 - Show latest stable - Class: RDoc::Markup::ToRdoc
accept_heading(heading)
public

No documentation available.

# File lib/rdoc/markup/to_rdoc.rb, line 49
  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