This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
accept_list_item_end(list_item)
public
Overrides indent width to ensure output lines up correctly.
# File lib/rdoc/markup/to_ansi.rb, line 30
def accept_list_item_end list_item
width = case @list_type.last
when :BULLET then
2
when :NOTE, :LABEL then
if @prefix then
@res << @prefix.strip
@prefix = nil
end
@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