method

accept_list_item_start

v1_9_2_180 - Show latest stable - Class: RDoc::Markup::ToRdoc
accept_list_item_start(list_item)
public

No documentation available.

# File lib/rdoc/markup/to_rdoc.rb, line 79
  def accept_list_item_start list_item
    bullet = case @list_type.last
             when :BULLET then
               '*'
             when :NOTE, :LABEL then
               attributes(list_item.label) + ":\n"
             else
               @list_index.last.to_s + '.'
             end

    case @list_type.last
    when :NOTE, :LABEL then
      @indent += 2
      @prefix = bullet + (' ' * @indent)
    else
      @prefix = (' ' * @indent) + bullet.ljust(bullet.length + 1)

      width = bullet.length + 1

      @indent += width
    end
  end