accept_list_item_end(list_item)
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