jeffa.io/www/build.fish
2023-08-24 02:48:56 -04:00

20 lines
401 B
Fish

if ! test -d out/
mkdir out/
end
cp basic.css out/index.css
for file in src/**/*.md
set -l output (string replace .md .html $file)
set -l output (string replace src/ out/ $output)
pandoc \
--to html \
--embed-resources \
--standalone \
--template templates/page.html \
--email-obfuscation references \
$file \
> $output
end