diff options
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ BASE_URL=https://example.com -PANDOC_ARGS=--from=gfm+emoji --to=html --section-divs +CONVERT=pandoc --from=gfm+emoji --to=html --section-divs PAGE_TEMPLATE=templates/page.html OPENRING_TEMPLATE=templates/openring.html RSS_TEMPLATE=templates/rss.xml @@ -36,7 +36,7 @@ out/%.html: tmp/%.content.html tmp/%.meta.title $(PAGE_TEMPLATE) $(OPENRING_FOOT tmp/%.content.html: src/%.md @mkdir -p $(@D) - pandoc $(PANDOC_ARGS) $< > $@ + $(CONVERT) $< > $@ tmp/%.meta.title: src/%.md @mkdir -p $(@D) |