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
Finishes consumption of `list_item`
# File lib/rdoc/markup/to_markdown.rb, line 55
def accept_list_item_end list_item
width = case @list_type.last
when :BULLET then
4
when :NOTE, :LABEL then
use_prefix
4
else
@list_index[-1] = @list_index.last.succ
4
end
@indent -= width
end