summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-01-15 11:15:53 +0200
committerLars Wirzenius <liw@liw.fi>2020-01-15 11:15:53 +0200
commit958cf5263ce685be8ca078f173aa9172fe35ea27 (patch)
tree16046f0a4d5953357328dc45f2539c6bfe6ab0ed
parent1bdb78c360ecf8bb6e1936cf0cf38a7112761c0a (diff)
downloadideas-958cf5263ce685be8ca078f173aa9172fe35ea27.tar.gz
Change: build with subplot instead of pandoc
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e332166..5ca16f3 100644
--- a/Makefile
+++ b/Makefile
@@ -5,10 +5,10 @@ pdfs = $(sources:.md=.pdf)
.SUFFIXES: .md .html .pdf
.md.html:
- pandoc --standalone --toc -o $@ $<
+ sp-docgen --output $@ $<
.md.pdf:
- pandoc --standalone --toc -o $@ $<
+ sp-docgen --output $@ $<
all: $(htmls) $(pdfs)