From 4115decb128c6c9fbaa7d49a0aa6ef0e8b36c5ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Sun, 8 Oct 2017 12:48:17 +0200 Subject: [PATCH] remove line len limit from html minifier --- compile_html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile_html.php b/compile_html.php index f1763d0..f9564e8 100755 --- a/compile_html.php +++ b/compile_html.php @@ -71,7 +71,7 @@ foreach($_pages as $_k => $p) { ' --collapse-whitespace'. ' --collapse-boolean-attributes'. ' --html5'. - ' --max-line-length 120'. + //' --max-line-length 120'. ' -o '.escapeshellarg($outputPath). ' '.escapeshellarg($tmpfile), $rv);