docs/tutorial/mypandocfilters/raw-file.py
author Sangeet Kumar Mishra <mail2sangeetmishra@gmail.com>
Sun, 03 Feb 2019 17:03:02 +0530
changeset 4391 054ff759f2fd
parent 3376 aad37ffd7d58
child 5227 b24de4b465ea
permissions -rw-r--r--
pick: add --tool for hg pick to specify mergetool This patch used configuration override to enable you to pass a mergetool via the --tool flag in case there is any merge conflict.

#!/usr/bin/env python
"""
Insert a raw-file as HTML code block
"""

import panflute as pf


def action(elem, doc):
    if isinstance(elem, pf.CodeBlock) and 'raw-file' in elem.classes:
        filepath = elem.text

        with open(filepath, 'r') as fd:
            content = fd.read()

        return pf.RawBlock('<pre>%s</pre>' % content, "html")
        # elem.text = content

def main(doc=None):
    return pf.run_filter(action, doc=doc)


if __name__ == '__main__':
    main()