aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2020-08-03 14:52:42 +0200
committerGuilhem Moulin <guilhem@fripost.org>2020-08-03 20:29:54 +0200
commit821d0ea7b5c3802952ee99ca98dbe379908b2649 (patch)
treef9392ce03e8b05eb799bb605201d19df6c016829 /Makefile
parentdc883341a13340c85b028ee16aa0963db6f47587 (diff)
Makefile: remove 'smart' extension from pandoc call to generate manuals.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 35f1334..9e28dbc 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ html: $(HTML_FILES)
# upper case the headers and remove the links
$(MANUAL_FILES): $(BUILD_DOCDIR)/%: ./doc/%.md
- pandoc -f markdown -t json -- "$<" | ./pandoc2man.jq | pandoc -s -f json -t man+smart -o "$@"
+ pandoc -f markdown -t json -- "$<" | ./pandoc2man.jq | pandoc -s -f json -t man -o "$@"
test:
@./tests/run-all