This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
accept_list_item_start(list_item)
public
Prepares the visitor for consuming list_item
# File lib/rdoc/markup/to_html.rb, line 250
def accept_list_item_start(list_item)
if tag = @in_list_entry.last
@res << tag
end
@res << list_item_start(list_item, @list.last)
end