Mercurial > evolve
view docs/tutorial/mypandocfilters/raw-file.py @ 4315:55ca0b6276e7 mercurial-4.4
test-compat: merge mercurial-4.5 into mercurial-4.4
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Mon, 24 Dec 2018 17:47:31 +0100 |
parents | aad37ffd7d58 |
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()