Returns the HTML tag for
list_type, possible using a label from list_item
# File lib/rdoc/markup/to_html.rb, line 287
def list_item_start(list_item, list_type)
case list_type
when :BULLET, :LALPHA, :NUMBER, :UALPHA then
"<li>"
when :LABEL then
"<dt>#{to_html list_item.label}</dt>\n<dd>"
when :NOTE then
"<tr><td class=\"rdoc-term\"><p>#{to_html list_item.label}</p></td>\n<td>"
else
raise RDoc::Error, "Invalid list type: #{list_type.inspect}"
end
end