47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# File 'lib/isodoc/word_function/postprocess.rb', line 47
def word_cleanup(docxml)
word_annex_cleanup(docxml)
word_preface(docxml)
word_sourcecode_annotations(docxml)
word_sourcecode_table(docxml)
word_nested_tables(docxml)
word_colgroup(docxml)
word_table_align(docxml)
word_table_pagebreak(docxml)
word_table_separator(docxml)
word_admonition_images(docxml)
word_list_continuations(docxml)
word_example_cleanup(docxml)
word_pseudocode_cleanup(docxml)
word_image_caption(docxml)
word_floating_titles(docxml)
word_section_breaks(docxml)
word_tab_clean(docxml)
authority_cleanup(docxml)
(docxml)
word_remove_empty_toc(docxml)
word_remove_empty_sections(docxml)
docxml
end
|