This formatter reduces extra lines for a simpler output. It improves way output looks for tools like IRC bots.
No extra blank lines
# File rdoc/ri/ri_formatter.rb, line 615
def blankline
end
Place heading level indicators inline with heading.
# File rdoc/ri/ri_formatter.rb, line 633
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