1
0

workaround for pandoc not being present in Cloudflare Pages platform V2 part 2

This commit is contained in:
Simon Michael
2023-11-28 08:35:28 -10:00
parent e4d5a07fac
commit da3efcedd7

View File

@@ -2,7 +2,7 @@ all: pandoc html
# workaround for pandoc not being present in Cloudflare Pages platform V2
pandoc:
pandoc --version || apt install pandoc
pandoc --version || sudo apt install -y pandoc
# Generate html from all md files in src/, in out/
html: $(patsubst src/%,out/%,$(patsubst %.md,%.html,$(wildcard src/*.md src/quickref/*.md))) Makefile