Html::Elem
# File misc/txt2html.rb, line 252 def initialize(*elems) super('ul') elems.each { |e| add_line(e) } end
# File misc/txt2html.rb, line 257 def add_line(line) add(Elem.new('li').add(line)) self end