summaryrefslogtreecommitdiff
path: root/build-programs.py
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2022-03-20 15:59:22 +0100
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2022-03-20 15:59:22 +0100
commit2aa8890c29b2af2d0be8a8b3ee7dbdfd71f72b3c (patch)
tree02ed6cbcfb91714ce1014073468a414d22a136e5 /build-programs.py
parentd557e77493201690f880f67a209ab07e95cd16bb (diff)
downloadquatuorbellefeuille.com-2aa8890c29b2af2d0be8a8b3ee7dbdfd71f72b3c.tar.xz
Adapt to pandoc 2.17
Pandoc always defaulted to wrapping to 72 columns, *except* for HTML output. That got harmonized in 2.17.
Diffstat (limited to 'build-programs.py')
-rwxr-xr-xbuild-programs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-programs.py b/build-programs.py
index fbf04ab..e914e66 100755
--- a/build-programs.py
+++ b/build-programs.py
@@ -46,7 +46,7 @@ def piece(p):
def pandoc(md):
return run(
- ('pandoc',),
+ ('pandoc', '--wrap=none'),
input=md, capture_output=True, text=True, check=True
).stdout