fixed raw decode warning + updated doc

This commit is contained in:
2025-02-23 14:12:50 +01:00
parent 37dce1f7c9
commit c0a42aa8a6
13 changed files with 88 additions and 78 deletions

12
justfile Normal file
View File

@ -0,0 +1,12 @@
# Local Variables:
# mode: makefile
# End:
gallery_dir := "./gallery"
set shell := ["bash", "-uc"]
manual:
typst c manual.typ manual.pdf
gallery:
for f in "{{gallery_dir}}"/*.typ; do typst c --root . "$f" "${f/typ/pdf}"; done
for f in "{{gallery_dir}}"/example*.typ; do typst c --root . "$f" "${f/typ/png}"; done