예제 #1
0
def main(doc=None):
    pf.run_filters(
        utils.reduce_dependencies(math),
        finalize=_finalize.to_function(),
        prepare=_prepare.to_function(),
        doc=doc,
    )
예제 #2
0
def main(doc=None):
    pf.run_filters(
        utils.reduce_dependencies(xml_code_to_table, render_table),
        finalize=_finalize.to_function(),
        prepare=_prepare.to_function(),
        doc=doc,
    )
예제 #3
0
def main(doc=None):
    pf.run_filters(
        utils.reduce_dependencies(parse_abbreviations, render_abbreviations),
        finalize=_finalize.to_function(),
        prepare=_prepare.to_function(),
        doc=doc,
    )
예제 #4
0
def main(doc=None):
    pf.run_filters(
        utils.reduce_dependencies(
            utils.testaction,
            process_headers.process_headers,
            comment,
            alteration,
            suggest_hyphenations,
            attributed,
            table.xml_code_to_table,
            citations.parse_citations,
            abbreviations.parse_abbreviations,
            boxes.boxes,
            mathfilter.role_shortcuts,
            mathfilter.math,
            figure.figure,
            figure.render_float_rows,
            figure.correct_image_paths,
            figure.clean_multicolumn,
            figure.table_links,
            citations.render_citations,
            abbreviations.render_abbreviations,
            table.render_table,
            gather_link_targets,
            render_links,
            repair_toc_title,
        ),
        finalize=_finalize.to_function(),
        prepare=_prepare.to_function(),
        doc=doc,
    )