Method: IsoDoc::Function::Lists#ol_parse
- Defined in:
- lib/isodoc/function/lists.rb
#ol_parse(node, out) ⇒ Object
54 55 56 57 58 59 |
# File 'lib/isodoc/function/lists.rb', line 54 def ol_parse(node, out) list_title_parse(node, out) out.ol **attr_code(ol_attrs(node)) do |ol| node.children.each { |n| n.name == "name" or parse(n, ol) } end end |