Пример #1
0
def main():
    bml.args = bml.parse_arguments(
        description='Generate BML make dependencies.',
        option_tree=False,
        option_include_external_files=False,
        option_indentation=False,
        output_extension='.mk')
    bml.makedepend(bml.args.inputfile, bml.args.outputfile)
Пример #2
0
def main():
    bml.args = bml.parse_arguments(description='Convert BML to LaTeX.',
                                   output_extension=latex.EXTENSION)
    latex.bml2latex(bml.args.inputfile, bml.args.outputfile)
Пример #3
0
def main():
    bml.args = bml.parse_arguments(description='Convert BSS to BML.', option_tree=False, option_include_external_files=False, option_indentation=False, output_extension=EXTENSION)
    bss2bml(bml.args.inputfile, bml.args.outputfile)
Пример #4
0
def main():
    bml.args = bml.parse_arguments(description='Convert BML to HTML.',
                                   output_extension=html.EXTENSION)
    html.bml2html(bml.args.inputfile, bml.args.outputfile)