diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2018-04-26 16:51:23 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2018-04-26 16:51:23 +0200 |
commit | a32fd7afe3bff2bcea198ef62653fcde2b31534d (patch) | |
tree | 09f2498011692c5c1e14652c7756c75b70fc6c49 | |
parent | 849d5668da8d10c9fd0d05aeeb6519c01ce1d8af (diff) |
Fix manpage generation with pandoc >=2.1
-rw-r--r-- | Changelog | 2 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ interimap (0.4) UNRELEASED (received by the IMAP FETCH ENVELOPE command) by the null sender address <>. - Ensure the lower bound of UID ranges is at least 1. - - Fix manpage generation with pandoc >=1.18. + - Fix manpage generation with pandoc >=2.1. -- Guilhem Moulin <guilhem@guilhem.org> Tue, 06 Dec 2016 17:37:01 +0100 @@ -2,7 +2,7 @@ all: pullimap.1 interimap.1 # upper case the headers and remove the links %.1: %.md - @pandoc -S -f markdown -t json "$<" | \ + @pandoc -f markdown -t json "$<" | \ jq " \ def fixheaders: \ if .t == \"Header\" then \ @@ -27,7 +27,7 @@ all: pullimap.1 interimap.1 , meta \ , blocks: .blocks | map(fixheaders) | map(fixlinks) \ }" | \ - pandoc -sS -f json -t man -o "$@" + pandoc -s -f json -t man+smart -o "$@" install: |