Render pandoc metadata variables inside the document
Project description
pandoc-jinja
Render pandoc metadata inside the document itself
Example
Write a markdown file, define metadata variable, and use them inside the with double brackets.
---
title: 'Greetings !'
bonjour: 'Hello'
...
## {{ title | upper }}
{{ bonjour }}, {{name}} !
You can also define variable from the command line
with --metadata
or --metadata-file
:
$ pandoc foo.md --filter=pandoc-jinja --metadata=name:world
<h2 id="title">GREETINGS !</h2>
<p>Hello, world !</p>
Disclaimer
-
This filter is slow. In most cases, it is probably more efficient to render the entire document once and for all with jinja and then pass it to pandoc.
-
Jinja conditionals and loops are not supported.
Install
pip install pandoc-jinja
Similar filters
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pandoc-jinja-0.2.1.tar.gz
(3.6 kB
view hashes)
Built Distribution
Close
Hashes for pandoc_jinja-0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5af9e160e0c6c6d3fefeae6918f32056be85ada7ae8ee1f58758ac9586592b70 |
|
MD5 | c2a3fa76d276aacb6b53f7a44fd24ffb |
|
BLAKE2b-256 | b8125af5bd25a0d9536c162a8313db845189640805bc49374b027cb8c2190b97 |