Mercurial > evolve
view docs/tutorial/mypandocfilters/raw-file.py @ 3376:aad37ffd7d58
doc: import the training support
Import the training support which was stored in a private-repository before.
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Mon, 08 Jan 2018 11:46:53 +0100 |
parents | |
children |
line wrap: on
line source
#!/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()