summaryrefslogtreecommitdiff
path: root/default.html.do
diff options
context:
space:
mode:
Diffstat (limited to 'default.html.do')
-rw-r--r--default.html.do15
1 files changed, 0 insertions, 15 deletions
diff --git a/default.html.do b/default.html.do
deleted file mode 100644
index e900e4a..0000000
--- a/default.html.do
+++ /dev/null
@@ -1,15 +0,0 @@
1redo-ifchange $2.md build/tex-filter.hs build/template.html5
2
3CSS=/style.css
4
5pandoc -t json $2.md | build/tex-filter.hs "$(pwd)" \
6 | while read -r x; do
7 [[ -z "${x}" ]] && continue
8 echo $x/image.svg
9 echo $x/image.svg >&2
10 done \
11 | xargs -d '\n' redo-ifchange
12
13pandoc -S -f markdown -t json $2.md \
14 | build/tex-filter.hs "$(pwd)" \
15 | pandoc --template=build/template.html5 --base-header-level=3 --standalone --email-obfuscation=none -f json -t html5 -c $CSS >$3 2>/dev/null