new(type = nil, *items)
Creates a new list of type with items
# File lib/rdoc/markup/list.rb, line 19 def initialize type = nil, *items @type = type @items = [] @items.push(*items) end