webserver.c/gen.sh
2024-09-13 11:01:18 -07:00

5 lines
233 B
Bash
Executable File

#!/bin/bash
cd content
find . -type d -exec mkdir -p ../public/{} \;
find ./ -iname "*.md" -type f -exec sh -c 'pandoc "${0}" -f markdown -t html5 --template ../templates/page.html --css index.css -o "../public/${0%.md}.html"' {} \;