cooklang to LaTeX conversion scripts
Find a file
2022-05-20 23:21:19 +02:00
.gitignore Added option for passing recipe on stdin, added gitignore. 2022-05-16 09:46:33 +02:00
cook2tex.py Added license 2022-05-20 23:21:19 +02:00
cooklangbook.py Added license 2022-05-20 23:21:19 +02:00
LICENSE.md Added license 2022-05-20 23:21:19 +02:00
README.md Added missing '-r' to example command. 2022-05-18 10:57:54 +02:00

Cook2tex

Two small python scripts that turn cooklang recipes into LaTeX source files. The LaTeX files use the cuisine package.

cook2tex.py

Takes a recipe path as an argument and returns the cuisine recipe block on stdout. Optionally, if provided with the argument "--", reads the recipes source from stdin.

Example

python3 cook2tex.py /path/to/recipe

cooklangbook.py

Takes multiple recipe paths as arguments and returns a complete latex document on stdout. Optionally takes the '-r' flag and two directory paths, the first one being the source and the second one the destination directory. It then generates multiple .tex files, one per recipe and one called recipe-book.tex including all recipies.

Examples

Basic operation:

python3 cooklangbook.py /path/to/recipes/{rec1,rec2,rec3}

Recursive book generation:

python3 cooklangbook.py -r /path/to/source/dir /path/to/dest/dir