docs/tutorial/mypandocfilters/raw-file.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 04 Jun 2019 10:07:08 +0200
changeset 4646 7b986968700b
parent 3376 aad37ffd7d58
child 5227 b24de4b465ea
permissions -rw-r--r--
compat: adjust `wrapadd` for upstream Mercurial core updated the API in f385ba70e4af.

#!/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()