Method: IsoDoc::HtmlFunction::Form#form_parse
- Defined in:
- lib/isodoc/html_function/form.rb
#form_parse(node, out) ⇒ Object
4 5 6 7 8 9 10 11 12 |
# File 'lib/isodoc/html_function/form.rb', line 4 def form_parse(node, out) out.form **attr_code(id: node["id"], name: node["name"], class: node["class"], action: node["action"]) do |div| node.children.each do |n| parse(n, div) end end end |