Method: IsoDoc::WordFunction::Body#dl_parse_table1
- Defined in:
- lib/isodoc/word_function/body.rb
#dl_parse_table1(table, dterm, ddefn) ⇒ Object
103 104 105 106 107 108 109 110 111 112 |
# File 'lib/isodoc/word_function/body.rb', line 103 def dl_parse_table1(table, dterm, ddefn) table.tr do |tr| tr.td **{ valign: "top", align: "left" } do |term| dt_parse(dterm, term) end tr.td **{ valign: "top" } do |listitem| ddefn.children.each { |n| parse(n, listitem) } end end end |