Browse Source

ajout option pandoc

master
Francois Lesueur 2 years ago
parent
commit
ae004b5207
  1. 4
      Makefile

4
Makefile

@ -16,12 +16,10 @@ $(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)

Loading…
Cancel
Save