web/scripts/web.sh

34 lines
473 B
Bash
Raw Normal View History

2024-12-03 15:26:11 +01:00
#!/bin/bash
2024-12-05 12:13:39 +01:00
convert()
{
file=$1
filename=$(basename -- "$file")
extension="${filename##*.}"
filename="${filename%.*}"
if [[ -f ../pages/$filename.md ]]
then
echo "making $filename.html"
pandoc -s ../pages/$filename.md -t html > ../dist/$filename.html --lua-filter=links-to-html.lua
fi
}
2024-12-05 12:32:45 +01:00
batch()
{
files=$(ls ../pages)
for f in $files
do
echo "$f"
convert $f
done
}
2024-12-05 12:13:39 +01:00
case $1 in
convert) shift 1; convert "$@";;
2024-12-05 12:32:45 +01:00
batch) batch ;;
2024-12-05 12:13:39 +01:00
*) echo "?" ;;
esac
2024-12-03 15:26:11 +01:00