]> git.g-eek.se Git - interimap.git/commitdiff
Fix manpage generation with pandoc >=2.1
authorGuilhem Moulin <guilhem@fripost.org>
Thu, 26 Apr 2018 14:51:23 +0000 (16:51 +0200)
committerGuilhem Moulin <guilhem@fripost.org>
Thu, 26 Apr 2018 14:51:23 +0000 (16:51 +0200)
Changelog
Makefile

index 4d8883521a02ae996e480575031ed046281732dc..b90111400fec1d56f70b0c5753b880cda056ae73 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -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
 
index a8474d6982f6d6689fd51ccc4664adf0603e1d20..d7b7133614fea3d71af92ca8d49599bc8ac73bbc 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -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: