In Files

  • rdoc/ri/formatter.rb

Files

Class/Module Index [+]

Quicksearch

RDoc::RI::SimpleFormatter

This formatter reduces extra lines for a simpler output. It improves way output looks for tools like IRC bots.

Public Instance Methods

blankline() click to toggle source

No extra blank lines

 
               # File rdoc/ri/formatter.rb, line 582
def blankline
end
            
display_heading(text, level, indent) click to toggle source

Place heading level indicators inline with heading.

 
               # File rdoc/ri/formatter.rb, line 598
def display_heading(text, level, indent)
  text = strip_attributes(text)
  case level
  when 1
    @output.puts "= " + text.upcase
  when 2
    @output.puts "-- " + text
  else
    @output.print indent, text, "\n"
  end
end
            
draw_line(label=nil) click to toggle source

Display labels only, no lines

 
               # File rdoc/ri/formatter.rb, line 588
def draw_line(label=nil)
  unless label.nil? then
    bold_print(label)
    @output.puts
  end
end