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.
28 lines
386 B
Makefile
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
|