html_list_name(list_type, open_tag)
Determines the HTML list element for list_type and open_tag
# File lib/rdoc/markup/to_html.rb, line 268 def html_list_name(list_type, open_tag) tags = LIST_TYPE_TO_HTML[list_type] raise RDoc::Error, "Invalid list type: #{list_type.inspect}" unless tags tags[open_tag ? 0 : 1] end