mirror of
https://github.com/alex-s168/website.git
synced 2025-09-10 09:05:08 +02:00
init
This commit is contained in:
20
build.sh
Executable file
20
build.sh
Executable file
@@ -0,0 +1,20 @@
|
||||
set -e
|
||||
|
||||
rm -rf build
|
||||
mkdir build
|
||||
|
||||
compile () {
|
||||
typst compile --root . --features html -j 4 $@
|
||||
}
|
||||
|
||||
page () {
|
||||
compile --format pdf --input web=false "pages/$1" "build/$1.min.pdf"
|
||||
compile --format html --input web=true "pages/$1" "build/$1.desktop.html"
|
||||
compile --format html --input web=false "pages/$1" "build/$1.min.html"
|
||||
}
|
||||
|
||||
page "article-make-regex-engine-1.typ"
|
||||
page "project-etc-nand.typ"
|
||||
page "index.typ"
|
||||
|
||||
cp build/index.typ.desktop.html build/index.html
|
Reference in New Issue
Block a user