This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
accept_list_start(list)
public
Prepares the visitor for consuming `list`
# File lib/rdoc/markup/to_markdown.rb, line 99
def accept_list_start list
case list.type
when :BULLET, :LABEL, :NOTE then
@list_index << nil
when :LALPHA, :NUMBER, :UALPHA then
@list_index << 1
else
raise RDoc::Error, "invalid list type #{list.type}"
end
@list_width << 4
@list_type << list.type
end