Method: IsoDoc::WordFunction::Postprocess#assemble_toc

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

#assemble_toc(docxml, level) ⇒ Object



20
21
22
23
24
25
26
27
# File 'lib/isodoc/word_function/postprocess_toc.rb', line 20

def assemble_toc(docxml, level)
  toc = ""
  toc += make_WordToC(docxml, level)
  toc += make_table_word_toc(docxml)
  toc += make_figure_word_toc(docxml)
  toc += make_recommendation_word_toc(docxml)
  toc
end