class RDoc::Markup::ToHtml

def list_item_start(list_item, list_type)

def list_item_start(list_item, list_type)
  case list_type
  when :BULLET, :LALPHA, :NUMBER, :UALPHA then
    annotate("<li>")
  when :LABEL then
    annotate("<dt>") +
      convert_flow(@am.flow(list_item.label)) +
      annotate("</dt>") +
      annotate("<dd>")
  when :NOTE then
    annotate("<tr>") +
      annotate("<td valign=\"top\">") +
      convert_flow(@am.flow(list_item.label)) +
      annotate("</td>") +
      annotate("<td>")
  else
    raise RDoc::Error, "Invalid list type: #{list_type.inspect}"
  end
end