resume.toml/justfile
dozens d8c8b01a07 Add mustache lambdas
Now you can define lambdas in lambdas.js. In the build process, ed will
creat the json for the view from the toml, and insert the lambdas to be
fed to mustache to expand the templates to create the groff to create
the pdf.

See the examples in lambdas.js for guidance on writing lambdas.
2023-12-21 19:40:06 -07:00

28 lines
386 B
Makefile

# show all recipes
default:
just --list --unsorted
# format toml
fmt:
taplo fmt resume.toml
# validate toml
validate:
taplo lint resume.toml
# create pdf
pdf:
#!/usr/bin/env sh
ed<<EOF
i
module.exports =
.
r !taplo get -f example.toml -o json
-1s/$/,
.r lambdas.js
w view.js
q
EOF
mustache view.js resume.template \
| groff -ms -t -Tpdf > example.pdf