summaryrefslogtreecommitdiff
path: root/latex/Makefile
diff options
context:
space:
mode:
authorPrefetch2021-02-20 13:46:18 +0100
committerPrefetch2021-02-20 13:46:18 +0100
commite71c14aa725d71a2ea7310c69b3d11a8bc12c0b0 (patch)
tree987d344c8758d3250cf5c997891b8e645dd00594 /latex/Makefile
parentf7d88d0ae1c5544cc517ae6b25970f82d82b1496 (diff)
Add latex/ directory + fix MathJax renderer
Diffstat (limited to 'latex/Makefile')
-rw-r--r--latex/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/latex/Makefile b/latex/Makefile
new file mode 100644
index 0000000..590d33d
--- /dev/null
+++ b/latex/Makefile
@@ -0,0 +1,13 @@
+
+CONV = pandoc
+CONVFLAGS = --from markdown --to html --standalone --template template.html --mathjax=/mathjax/tex-svg.js
+
+know: $(shell find ./know/concept -mindepth 1 -maxdepth 1 -type d -printf "%p/index.html\\n")
+ for file in $^; do \
+ mkdir -p ../static/`dirname $$file` ; \
+ cp -v $$file ../static/`dirname $$file`/ ; \
+ done
+
+know/concept/%/index.html: know/concept/%/source.md template.html main.css
+ $(CONV) $(CONVFLAGS) $< -o $@
+