ported rivet to typst

This commit is contained in:
2024-05-19 12:11:41 +02:00
parent f163a0548d
commit 5e0972037f
8 changed files with 766 additions and 0 deletions

4
src/util.typ Normal file
View File

@@ -0,0 +1,4 @@
#let z-fill(string, length) = {
let filled = "0" * length + string
return filled.slice(-length)
}