method

accept_list_start

v1_9_2_180 - Show latest stable - Class: RDoc::Markup::ToTest
accept_list_start(list)
public

No documentation available.

# File lib/rdoc/markup/to_test.rb, line 29
  def accept_list_start(list)
    @list << case list.type
             when :BULLET then
               '*'
             when :NUMBER then
               '1'
             else
               list.type
             end
  end