new(type = nil, *items)
Creates a new list of type with items. Valid list types are: :BULLET, :LABEL, :LALPHA, :NOTE, :NUMBER, :UALPHA
# File lib/rdoc/markup/list.rb, line 39 def initialize type = nil, *items @type = type @items = [] @items.concat items end