Codebase list jo / 3e4fe97
d/patches: don't use simple_tables extension for manual page Closes: #966932 Vincent Bernat 3 years ago
2 changed file(s) with 32 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 From a93337f0104aa1e9eb4837442fb4214f7bffd9bb Mon Sep 17 00:00:00 2001
1 From: Jan-Piet Mens <jp@mens.de>
2 Date: Sun, 19 Jul 2020 14:48:49 +0200
3 Subject: [PATCH] remove unnecessary `+simple_tables` from man generation
4 closes #129
5
6 ---
7 Makefile.am | 4 +--
8 jo.1 | 102 ++++++++++++++++++++++++++--------------------------
9 jo.md | 12 +++----
10 3 files changed, 59 insertions(+), 59 deletions(-)
11
12 diff --git a/Makefile.am b/Makefile.am
13 index 6660409..835f6a8 100644
14 --- a/Makefile.am
15 +++ b/Makefile.am
16 @@ -15,12 +15,12 @@ if USE_PANDOC
17 jo.1: jo.pandoc
18 @test -n "$(PANDOC)" || \
19 { echo 'pandoc' not found during configure.; exit 1; }
20 - $(PANDOC) -s -w man+simple_tables -o $@ $<
21 + $(PANDOC) -s -w man -f markdown -o $@ $<
22
23 jo.md: jo.pandoc
24 @test -n "$(PANDOC)" || \
25 { echo 'pandoc' not found during configure.; exit 1; }
26 - $(PANDOC) -s -w markdown+simple_tables -o $@ $<
27 + $(PANDOC) -s -w markdown+simple_tables -f markdown -o $@ $<
28
29 endif
30
0 a93337f0104aa1e9eb4837442fb4214f7bffd9bb.patch