Extracts just the RDoc::Markup::Heading elements from a RDoc::Markup::Document to help build a table of contents
Adds document to the output, using its heading cutoff if
present
# File rdoc/markup/to_table_of_contents.rb, line 35
def accept_document document
@omit_headings_below = document.omit_headings_below
super
end
Adds heading to the table of contents
# File rdoc/markup/to_table_of_contents.rb, line 44
def accept_heading heading
@res << heading unless suppressed? heading
end
Returns the table of contents
# File rdoc/markup/to_table_of_contents.rb, line 51
def end_accepting
@res
end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please see Improve the docs, or visit Documenting-ruby.org.