class Html::Span

Public Class Methods

new(hclass = nil) click to toggle source
Calls superclass method Html::Elem.new
# File misc/txt2html.rb, line 229
def initialize(hclass = nil)
        super('span')
        hclass(hclass) if hclass
        self
end