With slimish-jinja2 for Python 3, this library allow moban users to have slim template in their next documentation endeavour.
Given a data.json file with the following content
{ "person": { "firstname": "Smith", "lastname": "Jones", }, }
$ moban --template-type slim -c data.json "{{person.firstname}} {{person.lastname}}"
Smith Jones
You can install moban-slim via pip:
$ pip install moban-slim
or clone it and install it:
$ git clone https://github.com/moremoban/moban-slim.git
$ cd moban-slim
$ python setup.py install