accept_list_item_end(list_item)
public
Overrides indent width to ensure output lines up correctly.
# File lib/rdoc/markup/to_ansi.rb, line 32
def accept_list_item_end list_item
width = case @list_type.last
when :BULLET then
2
when :NOTE, :LABEL then
@res << "\n" unless res.length == 1
2
else
bullet = @list_index.last.to_s
@list_index[-1] = @list_index.last.succ
bullet.length + 2
end
@indent -= width
end