a small shell script to compile a directory containing typst files
| drafts | ||
| .gitignore | ||
| helper | ||
| README.md | ||
| UNLICENSE | ||
Typst Helper
I made this little shell script to help me compile tons of typst documents.
You put all of your typst code in drafts/ and it will compile it inside of content/
Example :
.
├── content
├── drafts
│ ├── MATH
│ │ └── first-lecture.typ
│ └── PYTHON
│ └── first-lecture.typ
├── helper
├── README.md
└── UNLICENSE
Let's compile my files :
./helper build
Now it compiled all of my typst files
.
├── content
│ ├── MATH
│ │ └── first-lecture.pdf
│ └── PYTHON
│ └── first-lecture.pdf
├── drafts
│ ├── MATH
│ │ └── first-lecture.typ
│ └── PYTHON
│ └── first-lecture.typ
├── helper
├── README.md
└── UNLICENSE
I hope it helps you