minifiers: Make keepWhitespace = false default for HTML (note)
authorJoe Mooring <joe.mooring@veriphor.com>
Wed, 9 Mar 2022 06:48:18 +0000 (22:48 -0800)
committerGitHub <noreply@github.com>
Wed, 9 Mar 2022 06:48:18 +0000 (07:48 +0100)
Closes #9456

minifiers/config.go
minifiers/minifiers_test.go
resources/resource_transformers/minifier/minify_test.go

index e56617a06b6d6b1201822c3477dd9d7520c6c6d6..675e5d2b87a901fb92f4d529ec8e23c598d8113f 100644 (file)
@@ -35,7 +35,7 @@ var defaultTdewolffConfig = tdewolffConfig{
                KeepConditionalComments: true,
                KeepEndTags:             true,
                KeepDefaultAttrVals:     true,
-               KeepWhitespace:          true,
+               KeepWhitespace:          false,
        },
        CSS: css.Minifier{
                Precision: 0,
index ece8cbd08cf032b9699d43a8089ac91a65de34bf..9866f67da05d811762cf5920cdf547b0b7ae3d2e 100644 (file)
@@ -191,7 +191,7 @@ func TestDecodeConfigDecimalIsNowPrecision(t *testing.T) {
 
 }
 
-// Issue 8771
+// Issue 9456
 func TestDecodeConfigKeepWhitespace(t *testing.T) {
        c := qt.New(t)
        v := config.New()
@@ -214,7 +214,7 @@ func TestDecodeConfigKeepWhitespace(t *testing.T) {
                        KeepDocumentTags:        true,
                        KeepEndTags:             false,
                        KeepQuotes:              false,
-                       KeepWhitespace:          true},
+                       KeepWhitespace:          false},
        )
 
 }
index cc5f7af412fd1045cb90d34d03b5bcbd38f992c2..b0ebe3171acbc96167b33231adbb780ab6673187 100644 (file)
@@ -38,5 +38,5 @@ func TestTransform(t *testing.T) {
        c.Assert(transformed.RelPermalink(), qt.Equals, "/hugo.min.html")
        content, err := transformed.(resource.ContentProvider).Content()
        c.Assert(err, qt.IsNil)
-       c.Assert(content, qt.Equals, "<h1> Hugo Rocks! </h1>")
+       c.Assert(content, qt.Equals, "<h1>Hugo Rocks!</h1>")
 }