class Html::A

Public Class Methods

new(href, text) click to toggle source
Calls superclass method Html::Elem::new
# File misc/txt2html.rb, line 211
def initialize(href, text)
        super('a', {'href'=>href}, [text])
end