Method: IsoDoc::HtmlFunction::Form#input_parse

Defined in:
lib/isodoc/html_function/form.rb

#input_parse(node, out) ⇒ Object



14
15
16
17
18
19
20
21
# File 'lib/isodoc/html_function/form.rb', line 14

def input_parse(node, out)
  out.input nil, **attr_code(
    id: node["id"], name: node["name"], type: node["type"],
    value: node["value"], disabled: node["disabled"],
    readonly: node["readonly"], checked: node["checked"],
    maxlength: node["maxlength"], minlength: node["minlength"]
  )
end