Method: IsoDoc::Function::Lists#ul_parse
- Defined in:
- lib/isodoc/function/lists.rb
#ul_parse(node, out) ⇒ Object
7 8 9 10 11 |
# File 'lib/isodoc/function/lists.rb', line 7 def ul_parse(node, out) out.ul **attr_code(ul_attrs(node)) do |ul| node.children.each { |n| parse(n, ul) } end end |