enabling a few pandoc extensions

This commit is contained in:
bg nerilex 2019-11-27 00:02:35 +01:00
parent 8839403b24
commit ef8b52f5de
1 changed files with 8 additions and 2 deletions

View File

@ -2,10 +2,16 @@ SHELL=/bin/bash
TARGETS = out/Paradigmen-001.pdf
FROM_FORMAT = markdown+grid_tables+raw_tex+table_captions
all: $(TARGETS)
%.pdf: %.md
pandoc --pdf-engine=xelatex -o $@ $<
pandoc --from $(FROM_FORMAT) --pdf-engine=xelatex -o $@ $<
out/%.pdf: %.md
pandoc --pdf-engine=xelatex -o $@ $<
pandoc --from $(FROM_FORMAT) --pdf-engine=xelatex -o $@ $<
clean:
rm -f $(TARGETS)
.PHONY: clean