diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2022-03-20 15:59:22 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2022-03-20 15:59:22 +0100 |
| commit | 2aa8890c29b2af2d0be8a8b3ee7dbdfd71f72b3c (patch) | |
| tree | 02ed6cbcfb91714ce1014073468a414d22a136e5 /build-programs.py | |
| parent | d557e77493201690f880f67a209ab07e95cd16bb (diff) | |
| download | quatuorbellefeuille.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-x | build-programs.py | 2 |
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 |
