markup/goldmark: Exclude event attributes from markdown render hook
authorJoe Mooring <joe.mooring@veriphor.com>
Wed, 16 Feb 2022 18:56:23 +0000 (10:56 -0800)
committerGitHub <noreply@github.com>
Wed, 16 Feb 2022 18:56:23 +0000 (19:56 +0100)
Fixes #9511

markup/goldmark/integration_test.go
markup/goldmark/render_hooks.go

index 0f47f4adabd1511940263a6f92807905d14f6369..eda2ac4233e64f7dbb2b4bbab247446e89dc8aab 100644 (file)
@@ -20,6 +20,7 @@ import (
        "github.com/gohugoio/hugo/hugolib"
 )
 
+// Issue 9463
 func TestAttributeExclusion(t *testing.T) {
        t.Parallel()
 
@@ -55,9 +56,42 @@ foo
        ).Build()
 
        b.AssertFileContent("public/p1/index.html", `
-<h2 class="a" id="heading">
-<blockquote class="b">
-<div class="highlight" id="c">
+               <h2 class="a" id="heading">
+               <blockquote class="b">
+               <div class="highlight" id="c">
+       `)
+}
+
+// Issue 9511
+func TestAttributeExclusionWithRenderHook(t *testing.T) {
+       t.Parallel()
+
+       files := `
+-- content/p1.md --
+---
+title: "p1"
+---
+## Heading {onclick="alert('renderhook')" data-foo="bar"}
+-- layouts/_default/single.html --
+{{ .Content }}
+-- layouts/_default/_markup/render-heading.html --
+<h{{ .Level }}
+  {{- range $k, $v := .Attributes -}}
+    {{- printf " %s=%q" $k $v | safeHTMLAttr -}}
+  {{- end -}}
+>{{ .Text | safeHTML }}</h{{ .Level }}>
+`
+
+       b := hugolib.NewIntegrationTestBuilder(
+               hugolib.IntegrationTestConfig{
+                       T:           t,
+                       TxtarString: files,
+                       NeedsOsFS:   false,
+               },
+       ).Build()
+
+       b.AssertFileContent("public/p1/index.html", `
+               <h2 data-foo="bar" id="heading">Heading</h2>
        `)
 }
 
index 5c600204cf9c4b99f86de643a5d3f0167e5adb84..1862c212543f128b1c1a3fd597d7c7881dc4c772 100644 (file)
@@ -57,6 +57,9 @@ func (a *attributesHolder) Attributes() map[string]string {
        a.attributesInit.Do(func() {
                a.attributes = make(map[string]string)
                for _, attr := range a.astAttributes {
+                       if strings.HasPrefix(string(attr.Name), "on") {
+                               continue
+                       }
                        a.attributes[string(attr.Name)] = string(util.EscapeHTML(attr.Value.([]byte)))
                }
        })