diff options
-rw-r--r-- | Changelog | 6 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +lacme (0.5) upstream; + + * Fix manpage generation with pandoc >=2.1 + + -- Guilhem Moulin <guilhem@fripost.org> Thu, 26 Apr 2018 16:48:13 +0200 + lacme (0.4) upstream; * Fix generation of manpages with pandoc >=1.18 @@ -4,7 +4,7 @@ all: ${MANPAGES} # 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 \ @@ -29,7 +29,7 @@ all: ${MANPAGES} , meta \ , blocks: .blocks | map(fixheaders) | map(fixlinks) \ }" | \ - pandoc -sS -f json -t man -o "$@" + pandoc -s -f json -t man+smart -o "$@" install: ${MANPAGES} install -d $(DESTDIR)/etc/lacme |