mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
tpl/tplimpl: Plainify title and description in twitter_cards.html
Closes #12433 Improves #10900
This commit is contained in:
parent
92290aa892
commit
74ab839ccb
2 changed files with 92 additions and 9 deletions
|
@ -1,12 +1,18 @@
|
||||||
{{- $images := partial "_funcs/get-page-images" . -}}
|
{{- $images := partial "_funcs/get-page-images" . }}
|
||||||
{{- with index $images 0 -}}
|
{{- with index $images 0 }}
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
<meta name="twitter:image" content="{{ .Permalink }}">
|
<meta name="twitter:image" content="{{ .Permalink }}">
|
||||||
{{- else -}}
|
{{- else }}
|
||||||
<meta name="twitter:card" content="summary">
|
<meta name="twitter:card" content="summary">
|
||||||
{{- end -}}
|
{{- end }}
|
||||||
<meta name="twitter:title" content="{{ .Title }}">
|
|
||||||
<meta name="twitter:description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end -}}">
|
{{- with or .Title site.Title site.Params.title | plainify }}
|
||||||
|
<meta name="twitter:title" content="{{ . }}">
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{- with or .Description .Summary site.Params.description | plainify | htmlUnescape | chomp }}
|
||||||
|
<meta name="twitter:description" content="{{ . }}">
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
{{- $twitterSite := "" }}
|
{{- $twitterSite := "" }}
|
||||||
{{- with site.Params.social }}
|
{{- with site.Params.social }}
|
||||||
|
|
|
@ -493,3 +493,80 @@ title: p5
|
||||||
`<meta itemprop="description" content="m n and **o** can't.">`,
|
`<meta itemprop="description" content="m n and **o** can't.">`,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Issue 12433
|
||||||
|
func TestTwitterCards(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
files := `
|
||||||
|
-- hugo.toml --
|
||||||
|
capitalizeListTitles = false
|
||||||
|
disableKinds = ['rss','sitemap','taxonomy','term']
|
||||||
|
[markup.goldmark.renderer]
|
||||||
|
unsafe = true
|
||||||
|
[params]
|
||||||
|
description = "m <em>n</em> and **o** can't."
|
||||||
|
[params.social]
|
||||||
|
twitter = 'foo'
|
||||||
|
-- layouts/_default/list.html --
|
||||||
|
{{ template "_internal/twitter_cards.html" . }}
|
||||||
|
-- layouts/_default/single.html --
|
||||||
|
{{ template "_internal/twitter_cards.html" . }}
|
||||||
|
-- content/s1/p1.md --
|
||||||
|
---
|
||||||
|
title: p1
|
||||||
|
images: [a.jpg,b.jpg]
|
||||||
|
---
|
||||||
|
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 name="twitter:card" content="summary_large_image">
|
||||||
|
<meta name="twitter:image" content="/a.jpg">
|
||||||
|
<meta name="twitter:title" content="p1">
|
||||||
|
<meta name="twitter:description" content="a b and c can’t.">
|
||||||
|
<meta name="twitter:site" content="@foo">
|
||||||
|
`,
|
||||||
|
)
|
||||||
|
|
||||||
|
b.AssertFileContent("public/s1/p2/index.html",
|
||||||
|
`<meta name="twitter:card" content="summary">`,
|
||||||
|
`<meta name="twitter:description" content="d e and f can’t.">`,
|
||||||
|
)
|
||||||
|
|
||||||
|
b.AssertFileContent("public/s1/p3/index.html",
|
||||||
|
`<meta name="twitter:description" content="g h and i can’t.">`,
|
||||||
|
)
|
||||||
|
|
||||||
|
// The markdown is intentionally not rendered to HTML.
|
||||||
|
b.AssertFileContent("public/s1/p4/index.html",
|
||||||
|
`<meta name="twitter:description" content="j k and **l** can't.">`,
|
||||||
|
)
|
||||||
|
|
||||||
|
// The markdown is intentionally not rendered to HTML.
|
||||||
|
b.AssertFileContent("public/s1/p5/index.html",
|
||||||
|
`<meta name="twitter:description" content="m n and **o** can't.">`,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue