In Files

  • rdoc/markup/to_test.rb

Files

Class/Module Index [+]

Quicksearch

RDoc::Markup::ToTest

This Markup outputter is used for testing purposes.

Public Instance Methods

accept_blank_line(am, fragment) click to toggle source
 
               # File rdoc/markup/to_test.rb, line 37
def accept_blank_line(am, fragment)
  @res << fragment.to_s
end
            
accept_heading(am, fragment) click to toggle source
 
               # File rdoc/markup/to_test.rb, line 41
def accept_heading(am, fragment)
  @res << fragment.to_s
end
            
accept_list_end(am, fragment) click to toggle source
 
               # File rdoc/markup/to_test.rb, line 29
def accept_list_end(am, fragment)
  @res << fragment.to_s
end
            
accept_list_item(am, fragment) click to toggle source
 
               # File rdoc/markup/to_test.rb, line 33
def accept_list_item(am, fragment)
  @res << fragment.to_s
end
            
accept_list_start(am, fragment) click to toggle source
 
               # File rdoc/markup/to_test.rb, line 25
def accept_list_start(am, fragment)
  @res << fragment.to_s
end
            
accept_paragraph(am, fragment) click to toggle source
 
               # File rdoc/markup/to_test.rb, line 17
def accept_paragraph(am, fragment)
  @res << fragment.to_s
end
            
accept_rule(am, fragment) click to toggle source
 
               # File rdoc/markup/to_test.rb, line 45
def accept_rule(am, fragment)
  @res << fragment.to_s
end
            
accept_verbatim(am, fragment) click to toggle source
 
               # File rdoc/markup/to_test.rb, line 21
def accept_verbatim(am, fragment)
  @res << fragment.to_s
end
            
end_accepting() click to toggle source
 
               # File rdoc/markup/to_test.rb, line 13
def end_accepting
  @res
end
            
start_accepting() click to toggle source
 
               # File rdoc/markup/to_test.rb, line 9
def start_accepting
  @res = []
end