a small shell script to compile a directory containing typst files
Find a file
2025-10-25 23:26:10 +02:00
drafts add readme 2025-10-25 23:26:10 +02:00
.gitignore first commit of helper 2025-10-25 23:19:49 +02:00
helper first commit of helper 2025-10-25 23:19:49 +02:00
README.md add readme 2025-10-25 23:26:10 +02:00
UNLICENSE first commit of helper 2025-10-25 23:19:49 +02:00

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