Jiml is a Python script that renders Jinja templates with data from YAML files.
This allows users to maintain one YAML file of data that can be published into many other formats. For example, a CV can be maintained in a single YAML file but published as HTML and LaTeX.
| Long Arg | Short Arg | Description |
|---|---|---|
| yaml | y | YAML config file. |
| template | t | Jinja2 template. |
| output | o | Output file to render. |
On Unix-like systems with Python 3 installed in /user/bin/python3:
./render.py -y demo.yaml -t tech-resume.tex -o demo-resume.texIf you want to generate a PDF from a LaTeX file:
xelatex demo-resume.texBy default, YAML data is escaped depending on the output format. Jiml supports for the following formats for escaping:
- LaTeX
- HTML
- XML
You can render plaintext file formats not in the list above, but special characters will not be escaped.
Python dependencies are in requirements.txt. Install them with pip or pip3:
pip3 install -r requirements.txtGit hooks live in .githooks. For git clients older than version 2.9, set this as your hooksPath:
git config core.hooksPath ".githooks"