list_end_for(list_type)
Returns the HTML end-tag for list_type
# File lib/rdoc/markup/to_html.rb, line 370 def list_end_for(list_type) case list_type when :BULLET, :LALPHA, :NUMBER, :UALPHA then "</li>" when :LABEL, :NOTE then "</dd>" else raise RDoc::Error, "Invalid list type: #{list_type.inspect}" end end