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_tt_only.rb, line 50
def accept_list_item_start list_item
case @list_type.last
when :NOTE, :LABEL then
Array(list_item.label).map do |label|
tt_sections label
end.flatten
end
end