Class | RI::SimpleFormatter |
In: |
rdoc/ri/ri_formatter.rb
|
Parent: | TextFormatter |
This formatter reduces extra lines for a simpler output. It improves way output looks for tools like IRC bots.
Place heading level indicators inline with heading.
# File rdoc/ri/ri_formatter.rb, line 635 def display_heading(text, level, indent) text = strip_attributes(text) case level when 1 puts "= " + text.upcase when 2 puts "-- " + text else print indent, text, "\n" end end