]> git.maquefel.me Git - brevno-suite/hugo/commitdiff
tpl/tplimpl: Plainify title and description in schema.html
authorJoe Mooring <joe.mooring@veriphor.com>
Thu, 25 Apr 2024 14:58:28 +0000 (07:58 -0700)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 14 May 2024 12:18:49 +0000 (14:18 +0200)
Closes #12432

tpl/tplimpl/embedded/templates/schema.html
tpl/tplimpl/tplimpl_integration_test.go

index c4e89abd6e94e013a18d77abf7e7b4c4019df3fa..2b3c5425aeb5e7bace28c357c9fd1436177d96cd 100644 (file)
@@ -1,8 +1,8 @@
-{{- with or .Title site.Title }}
+{{- with or .Title site.Title | plainify }}
   <meta itemprop="name" content="{{ . }}">
 {{- end }}
 
-{{- with or .Description .Summary site.Params.Description }}
+{{- with or .Description .Summary site.Params.description | plainify | htmlUnescape | chomp }}
   <meta itemprop="description" content="{{ . }}">
 {{- end }}
 
index f9d25eb49f3d51ea72df92de999aafcd17d6a598..b30965be938fa175aa4213196dd67398172c4de1 100644 (file)
@@ -411,3 +411,85 @@ series: [series-1]
                `<meta property="og:description" content="m n and **o** can&#39;t.">`,
        )
 }
+
+// Issue 12432
+func TestSchema(t *testing.T) {
+       t.Parallel()
+
+       files := `
+-- hugo.toml --
+capitalizeListTitles = false
+disableKinds = ['rss','sitemap']
+[markup.goldmark.renderer]
+unsafe = true
+[params]
+description = "m <em>n</em> and **o** can't."
+[taxonomies]
+tag = 'tags'
+-- layouts/_default/list.html --
+{{ template "_internal/schema.html" . }}
+-- layouts/_default/single.html --
+{{ template "_internal/schema.html" . }}
+-- content/s1/p1.md --
+---
+title: p1
+date: 2024-04-24T08:00:00-07:00
+lastmod: 2024-04-24T11:00:00-07:00
+images: [a.jpg,b.jpg]
+tags: [t1,t2]
+---
+a <em>b</em> and **c** can't.
+-- content/s1/p2.md --
+---
+title: p2
+---
+d <em>e</em> and **f** can't.
+<!--more-->
+-- content/s1/p3.md --
+---
+title: p3
+summary: g <em>h</em> and **i** can't.
+---
+-- content/s1/p4.md --
+---
+title: p4
+description: j <em>k</em> and **l** can't.
+---
+-- content/s1/p5.md --
+---
+title: p5
+---
+`
+
+       b := hugolib.Test(t, files)
+
+       b.AssertFileContent("public/s1/p1/index.html", `
+               <meta itemprop="name" content="p1">
+               <meta itemprop="description" content="a b and c can’t.">
+               <meta itemprop="datePublished" content="2024-04-24T08:00:00-07:00">
+               <meta itemprop="dateModified" content="2024-04-24T11:00:00-07:00">
+               <meta itemprop="wordCount" content="5">
+               <meta itemprop="image" content="/a.jpg">
+               <meta itemprop="image" content="/b.jpg">
+               <meta itemprop="keywords" content="t1,t2">
+               `,
+       )
+
+       b.AssertFileContent("public/s1/p2/index.html",
+               `<meta itemprop="description" content="d e and f can’t.">`,
+       )
+
+       b.AssertFileContent("public/s1/p3/index.html",
+               `<meta itemprop="description" content="g h and i can’t.">`,
+       )
+
+       // The markdown is intentionally not rendered to HTML.
+       b.AssertFileContent("public/s1/p4/index.html",
+               `<meta itemprop="description" content="j k and **l** can&#39;t.">`,
+       )
+
+       // The markdown is intentionally not rendered to HTML.
+       b.AssertFileContent("public/s1/p5/index.html",
+               `<meta itemprop="description" content="m n and **o** can&#39;t.">`,
+       )
+}