Added basic shit for master-docs

This commit is contained in:
Victor Andersson
2025-09-27 23:03:34 +02:00
parent 549a5935f6
commit 2104701858
3 changed files with 80 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/bash
cd "$(dirname "$0")"
cd ..
mkdir -p tex
cd latex
for file in ../policies/*.md; do
filename=$(basename "$file" .md)
pandoc "$file" -o "../tex/$filename.tex" "--template=policymall.tex" -t "latex"
done