Mercurial > evolve
view docs/tutorial/mypandocfilters/raw-file.py @ 6765:5376963ea1d9 mercurial-5.3
test-compat: merge mercurial-5.4 into mercurial-5.3
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Thu, 11 Apr 2024 14:30:20 -0300 |
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()