From 2aa8890c29b2af2d0be8a8b3ee7dbdfd71f72b3c Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Sun, 20 Mar 2022 15:59:22 +0100 Subject: Adapt to pandoc 2.17 Pandoc always defaulted to wrapping to 72 columns, *except* for HTML output. That got harmonized in 2.17. --- build-programs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build-programs.py') 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 -- cgit v1.2.3