Org mode to jinja2 templating.
Project description
OrJi
OrJi is a command line tool to generate text files using jinja2 and orgmode files. It can be used to generate LaTeX, Markdown or HTML or any other kind of text from an orgmode file.
It is somewhat inspired by j2cli.
Quickstart
Simple org mode file used with simple template.
simple.org
* A normal note
Just a note
* TODO Wash car :morning:
Car wash.
* TODO File taxes :evening:
File taxes for wife too.
* DONE Watch TV
simple.jinja2
{% for note in root %}
{%- if note.state == "TODO" -%}
# {{ note.name }} ({% for tag in note.tags %}{{ tag }}{% endfor %})
{{ note.body }}
{% endif %}
{% endfor %}
Running:
orji out simple.org simple.jinja2
Will output:
# Wash car (morning)
Car wash.
# File taxes (evening)
File taxes for wife too.
Why?
The practical itch I was scratching was editing and writing small blocks of content in orgzly on my phone and being able to kick off a small script that either turned it into a nice letter PDF or CV pdf or updated the markdown on my website.
It also lets me maintain separation of concerns on personal documents by keeping content in org files and style in jinja2 templates.
Install
OrJi can be installed with pip:
pip install orji
As a command line app, it is typically best installed via pipx.
pipx install orji
Using OrJi
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file orji-4.5.0.tar.gz
.
File metadata
- Download URL: orji-4.5.0.tar.gz
- Upload date:
- Size: 29.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6a2ec8e7c95acdf9fd567a338050ade5fcafc15eb92fc703c1e5d0ab5549ca3 |
|
MD5 | dd93c708e5316b4152a67d976959de57 |
|
BLAKE2b-256 | 1e3506a236af73534a08937bcaa4fe994ff1de7d23550f7f831b96c1c89b775d |
File details
Details for the file orji-4.5.0-py3-none-any.whl
.
File metadata
- Download URL: orji-4.5.0-py3-none-any.whl
- Upload date:
- Size: 14.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42f41b47fb0fa1930099c4611bc0f9e3cd4a8c979a6ff8f9c30df63f0960f1e9 |
|
MD5 | 174bcaf67ec39fd0cfc03cba52be09b3 |
|
BLAKE2b-256 | 618a314d48e7a073e04e1668c985ea2a0525dc8058971f9556481029e50384ce |