From ef8b52f5deeb2b62df4946745a1e47e7785e1e26 Mon Sep 17 00:00:00 2001 From: bg Date: Wed, 27 Nov 2019 00:02:35 +0100 Subject: [PATCH] enabling a few pandoc extensions --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9c48970..4240bce 100644 --- a/Makefile +++ b/Makefile @@ -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