add jujutsu article
This commit is contained in:
parent
c47942b451
commit
e76b0a3caa
12 changed files with 320 additions and 2 deletions
14
justfile
14
justfile
|
@ -1,5 +1,5 @@
|
|||
# vim: set ft=make :
|
||||
root := `pwd`
|
||||
root := justfile_directory()
|
||||
build := root / "build"
|
||||
|
||||
# Build static website
|
||||
build:
|
||||
|
@ -23,3 +23,13 @@ deploy: build
|
|||
|
||||
preview: build
|
||||
python3 -m webbrowser -t "file://{{root}}/build/index.html"
|
||||
|
||||
JJ_SLIDES_SRC := root / "articles/jujutsu/slides.md"
|
||||
JJ_SLIDES_OUT := build / "articles/jujutsu/jujutsu_slides.pdf"
|
||||
jj-slides:
|
||||
npx @marp-team/marp-cli@latest --allow-local-files \
|
||||
--bespoke.progress {{ JJ_SLIDES_SRC }} --pdf \
|
||||
--output {{ JJ_SLIDES_OUT }}
|
||||
|
||||
jj-slides-watch:
|
||||
ls {{ JJ_SLIDES_SRC }} | entr just jj-slides
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue