Flowdock
method

accept_list_item_start

Importance_0
v1_9_2_180 - Show latest stable - 0 notes - Class: ToRdoc
accept_list_item_start(list_item) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# 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
Register or log in to add new notes.