deps: Fix Goldmark regression with HTML comments
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 11 Mar 2022 12:13:18 +0000 (13:13 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 11 Mar 2022 13:44:01 +0000 (14:44 +0100)
Fixes #9650

go.mod
go.sum
hugolib/integrationtest_builder.go
markup/goldmark/integration_test.go

diff --git a/go.mod b/go.mod
index bab239dd253d025b03649ac5c77bcf54319f1224..cacafa240cd1307068e06c6c171169602d4f67ba 100644 (file)
--- a/go.mod
+++ b/go.mod
@@ -58,7 +58,7 @@ require (
        github.com/spf13/jwalterweatherman v1.1.0
        github.com/spf13/pflag v1.0.5
        github.com/tdewolff/minify/v2 v2.10.0
-       github.com/yuin/goldmark v1.4.8
+       github.com/yuin/goldmark v1.4.9
        go.uber.org/atomic v1.9.0
        gocloud.dev v0.20.0
        golang.org/x/image v0.0.0-20211028202545-6944b10bf410
diff --git a/go.sum b/go.sum
index 6a14eb2a9f52af8bf515fbb14492e298536491c5..93c1565bf875053ce86b9ffe2fc821dcf8bc4d15 100644 (file)
--- a/go.sum
+++ b/go.sum
@@ -577,8 +577,12 @@ github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de
 github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
 github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
 github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
+github.com/yuin/goldmark v1.4.7 h1:KHHlQL4EKBZ43vpA1KBEQHfodk4JeIgeb0xJLg7rvDI=
+github.com/yuin/goldmark v1.4.7/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
 github.com/yuin/goldmark v1.4.8 h1:zHPiabbIRssZOI0MAzJDHsyvG4MXCGqVaMOwR+HeoQQ=
 github.com/yuin/goldmark v1.4.8/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
+github.com/yuin/goldmark v1.4.9 h1:RmdXMGe/HwhQEWIjFAu8fjjvkxJ0tDRVbWGrsPNrclw=
+github.com/yuin/goldmark v1.4.9/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
 go.etcd.io/etcd/api/v3 v3.5.1/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs=
 go.etcd.io/etcd/client/pkg/v3 v3.5.1/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g=
 go.etcd.io/etcd/client/v2 v2.305.1/go.mod h1:pMEacxZW7o8pg4CrFE7pquyCJJzZvkvdD2RibOCCCGs=
index b7b43624f37260b8af5b37b679b0c1d32bce6747..1bfa194bdc98c3621c4cb5113a1df12a67764aa2 100644 (file)
@@ -133,6 +133,14 @@ func (s *IntegrationTestBuilder) AssertFileContent(filename string, matches ...s
        }
 }
 
+func (s *IntegrationTestBuilder) AssertFileContentExact(filename string, matches ...string) {
+       s.Helper()
+       content := s.FileContent(filename)
+       for _, m := range matches {
+               s.Assert(content, qt.Contains, m, qt.Commentf(m))
+       }
+}
+
 func (s *IntegrationTestBuilder) AssertDestinationExists(filename string, b bool) {
        checker := qt.IsTrue
        if !b {
index cab85cfdd4c6a48a0b6aa29edcb9c864c7feb4a2..064ffb85d1a1d9a23680c90f5d9053a4c04c7425 100644 (file)
@@ -535,3 +535,33 @@ Link https procol: https://www.example.org
 
        }
 }
+
+// Issue 9650
+func TestRenderingOfHtmlComments(t *testing.T) {
+       t.Parallel()
+
+       files := `
+-- config.toml --
+[markup.goldmark.renderer]
+unsafe = true
+-- content/p1.md --
+---
+title: "p1"
+---
+a <!-- b --> c
+
+-- layouts/_default/single.html --
+{{ .Content }}
+`
+
+       b := hugolib.NewIntegrationTestBuilder(
+               hugolib.IntegrationTestConfig{
+                       T:           t,
+                       TxtarString: files,
+               },
+       ).Build()
+
+       b.AssertFileContentExact("public/p1/index.html",
+               "<p>a <!-- b --> c</p>",
+       )
+}