docs: some initial groundwork #2

Merged
multisamplednight merged 26 commits from :initial-docs into main 2024-01-20 19:00:52 +00:00
2 changed files with 6 additions and 2 deletions
Showing only changes of commit 6217a984a2 - Show all commits

1
docs/compiled/.gitkeep Normal file
View file

@ -0,0 +1 @@
the just script will place compiled pdfs in here. thank you for your understanding.

View file

@ -1,2 +1,5 @@
doc-design:
typst compile docs/design/*.typ --root=docs
docs:
for doc in $(fd '.typ' './docs' --exclude 'template*' --exclude 'util*'); do \
typst compile $doc --root=docs; \
mv "$(dirname $doc)/$(basename $doc .typ).pdf" docs/compiled/; \
done