Method: IsoDoc::WordFunction::Body#dl_parse_nontable1

Defined in:
lib/isodoc/word_function/lists.rb

#dl_parse_nontable1(out, dterm, ddef) ⇒ Object



39
40
41
42
43
44
45
46
47
# File 'lib/isodoc/word_function/lists.rb', line 39

def dl_parse_nontable1(out, dterm, ddef)
  out.p **attr_code(style: WORD_EMBED_DL_ATTRS, id: dterm["id"]) do |p|
    dterm.children.each { |n| parse(n, p) }
    insert_tab(p, 1)
    ddef["id"] and bookmark_parse(ddef, out)
    ddef_first_para(out, ddef)
  end
  ddef_other_paras(out, ddef)
end