From ae004b5207cb3fd524d767cbce8e9a7979c4b210 Mon Sep 17 00:00:00 2001 From: Francois Lesueur Date: Fri, 26 Nov 2021 11:15:50 +0100 Subject: [PATCH] ajout option pandoc --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 869c554..21b43a3 100644 --- a/Makefile +++ b/Makefile @@ -12,16 +12,14 @@ html: $(HTML) directories: $(OUTDIR) -$(OUTDIR): +$(OUTDIR): mkdir $(OUTDIR) $(OUTDIR)/%.html: %.md $(OUTDIR) - pandoc $< -o $@ -s + pandoc --from=markdown+lists_without_preceding_blankline $< -o $@ -s $(OUTDIR)/%.pdf: $(OUTDIR)/%.html wkhtmltopdf $< $@ clean: \rm -rf *.html *.pdf $(OUTDIR) - -