From: Evan Hunt Date: Mon, 10 Jun 2019 04:26:55 +0000 (-0700) Subject: specify title metadata and markdown format when calling pandoc X-Git-Tag: v9.15.1~4^2 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=3663f61e0e41afa32e82fcd693bb661c7406244b;p=thirdparty%2Fbind9.git specify title metadata and markdown format when calling pandoc this change silences a warning message and prevents the unwanted use of smart quotes when using pandoc 2.7.1 to generate human-readable versions of README and other markdown files. --- diff --git a/Makefile.in b/Makefile.in index 139fbdda345..bb98b5af2e5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -97,27 +97,27 @@ test-force: exit $$status README: README.md - ${PANDOC} --email-obfuscation=none -s -t html README.md | \ + ${PANDOC} --email-obfuscation=none -s --metadata title="README" -f markdown-smart -t html README.md | \ ${W3M} -dump -cols 75 -O ascii -T text/html | \ sed -e '$${/^$$/d;}' > $@ HISTORY: HISTORY.md - ${PANDOC} --email-obfuscation=none -s -t html HISTORY.md | \ + ${PANDOC} --email-obfuscation=none -s --metadata title="HISTORY" -f markdown-smart -t html HISTORY.md | \ ${W3M} -dump -cols 75 -O ascii -T text/html | \ sed -e '$${/^$$/d;}' > $@ OPTIONS: OPTIONS.md - ${PANDOC} --email-obfuscation=none -s -t html OPTIONS.md | \ + ${PANDOC} --email-obfuscation=none -s --metadata title="OPTIONS" -f markdown-smart -t html OPTIONS.md | \ ${W3M} -dump -cols 75 -O ascii -T text/html | \ sed -e '$${/^$$/d;}' > $@ CONTRIBUTING: CONTRIBUTING.md - ${PANDOC} --email-obfuscation=none -s -t html CONTRIBUTING.md | \ + ${PANDOC} --email-obfuscation=none -s --metadata title="CONTRIBUTING" -f markdown-smart -t html CONTRIBUTING.md | \ ${W3M} -dump -cols 75 -O ascii -T text/html | \ sed -e '$${/^$$/d;}' > $@ PLATFORMS: PLATFORMS.md - ${PANDOC} --email-obfuscation=none -s -t html PLATFORMS.md | \ + ${PANDOC} --email-obfuscation=none -s --metadata title="PLATFORMS" -f markdown-smart -t html PLATFORMS.md | \ ${W3M} -dump -cols 75 -O ascii -T text/html | \ sed -e '$${/^$$/d;}' > $@