From 5ea132288e4f83fa24ebf3f61b503e440aaccad5 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Thu, 26 Apr 2018 16:50:11 +0200 Subject: Fix manpage generation with pandoc >=2.1 --- Changelog | 6 ++++++ Makefile | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 2fd2f8e..a8ebfe6 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,9 @@ +lacme (0.5) upstream; + + * Fix manpage generation with pandoc >=2.1 + + -- Guilhem Moulin Thu, 26 Apr 2018 16:48:13 +0200 + lacme (0.4) upstream; * Fix generation of manpages with pandoc >=1.18 diff --git a/Makefile b/Makefile index 76057e2..5d421bf 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3