diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2020-08-03 14:52:42 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2020-08-03 20:29:54 +0200 |
commit | 821d0ea7b5c3802952ee99ca98dbe379908b2649 (patch) | |
tree | f9392ce03e8b05eb799bb605201d19df6c016829 | |
parent | dc883341a13340c85b028ee16aa0963db6f47587 (diff) |
Makefile: remove 'smart' extension from pandoc call to generate manuals.
-rw-r--r-- | Changelog | 8 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,11 @@ +interimap (0.5.2) UNRELEASED; + + - Makefile: remove 'smart' extension from pandoc call to generate + manuals (it's no longer supported by pandoc 2.9 which generates \[lq] + and \[rq] in the groff output anyway). + + -- Guilhem Moulin <guilhem@fripost.org> Mon, 03 Aug 2020 14:51:23 +0200 + interimap (0.5.1) upstream; + pullimap: also compare RFC 5322 date and envelope information in @@ -13,7 +13,7 @@ html: $(HTML_FILES) # upper case the headers and remove the links $(MANUAL_FILES): $(BUILD_DOCDIR)/%: ./doc/%.md - pandoc -f markdown -t json -- "$<" | ./pandoc2man.jq | pandoc -s -f json -t man+smart -o "$@" + pandoc -f markdown -t json -- "$<" | ./pandoc2man.jq | pandoc -s -f json -t man -o "$@" test: @./tests/run-all |