In Files

  • rdoc/ri/ri_formatter.rb

Files

Class/Module Index [+]

Quicksearch

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/ri_formatter.rb, line 615
def blankline
end
            
display_heading(text, level, indent) click to toggle source

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
            
draw_line(label=nil) click to toggle source

Display labels only, no lines

 
               # File rdoc/ri/ri_formatter.rb, line 622
def draw_line(label=nil)
  unless label.nil? then
    bold_print(label) 
    puts
  end
end