mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-21 20:50:40 +00:00
fix: use safeHTML for description in metadata (#202)
This commit is contained in:
parent
9f49819aa8
commit
063c116bb5
@ -5,9 +5,9 @@
|
||||
{{- if not (eq .Kind "home") }}
|
||||
{{- $title = printf `%s on %s` (partial "utils/title" .) $title -}}
|
||||
{{- end }}
|
||||
<title>{{ trim ($title | plainify) "\n" }}</title>
|
||||
<title>{{ trim ($title | plainify) "\n" | safeHTML }}</title>
|
||||
{{- with .Site.Params.subtitle }}
|
||||
<subtitle>{{ trim (. | plainify) "\n" }}</subtitle>
|
||||
<subtitle>{{ trim (. | plainify) "\n" | safeHTML }}</subtitle>
|
||||
{{- end }}
|
||||
{{- $output_formats := .OutputFormats -}}
|
||||
{{- range $output_formats -}}
|
||||
@ -34,7 +34,7 @@
|
||||
{{- end -}}
|
||||
{{- range $page := $pages }}
|
||||
<entry>
|
||||
<title>{{ trim (partial "utils/title" . | plainify) "\n" }}</title>
|
||||
<title>{{ trim (partial "utils/title" . | plainify) "\n" | safeHTML }}</title>
|
||||
<link href="{{ .Permalink }}" rel="alternate" type="text/html" {{ with .Site.Language.Lang }} hreflang="{{ . }}"{{ end }} />
|
||||
<id>{{ .Permalink }}</id>
|
||||
{{- with .Params.authors }}
|
||||
|
@ -7,7 +7,7 @@
|
||||
{{- $authors := default (slice .Site.Params.GeekblogAuthor) .Params.authors -}}
|
||||
|
||||
{{- with partial "utils/description" . }}
|
||||
<meta name="description" content="{{ trim (. | plainify) "\n" }}" />
|
||||
<meta name="description" content="{{ trim (. | plainify) "\n" | safeHTML }}" />
|
||||
{{- end }}
|
||||
{{- with $keywords }}
|
||||
<meta name="keywords" content="{{ delimit . "," }}" />
|
||||
|
@ -5,7 +5,7 @@
|
||||
<meta property="og:site_name" content="{{ . }}" />
|
||||
{{- end }}
|
||||
{{- with partial "utils/description" . }}
|
||||
<meta property="og:description" content="{{ trim (. | plainify) "\n" }}" />
|
||||
<meta property="og:description" content="{{ trim (. | plainify) "\n" | safeHTML }}" />
|
||||
{{- end }}
|
||||
<meta property="og:type" content="{{ if .IsPage }}article{{ else }}website{{ end }}" />
|
||||
<meta property="og:url" content="{{ .Permalink }}" />
|
||||
|
@ -11,7 +11,7 @@
|
||||
"name": "{{ .Site.Title }}",
|
||||
"url": "{{ .Site.BaseURL }}",
|
||||
{{- with partial "utils/description" . }}
|
||||
"description": "{{ trim (. | plainify) "\n" }}",
|
||||
"description": "{{ trim (. | plainify) "\n" | safeHTML }}",
|
||||
{{- end }}
|
||||
"thumbnailUrl": "{{ $thumbnail }}"
|
||||
{{- with .Site.Params.GeekblogContentLicense }},
|
||||
@ -35,7 +35,7 @@
|
||||
"alternativeHeadline": "{{ . }}",
|
||||
{{- end }}
|
||||
{{- with partial "utils/description" . }}
|
||||
"description": "{{ trim (. | plainify) "\n" }}",
|
||||
"description": "{{ trim (. | plainify) "\n" | safeHTML }}",
|
||||
{{- end }}
|
||||
"inLanguage": {{ .Site.Language.Lang }},
|
||||
"isFamilyFriendly": "true",
|
||||
|
@ -21,7 +21,7 @@
|
||||
{{- end }}
|
||||
<meta name="twitter:title" content="{{ partial "utils/title" . }}" />
|
||||
{{- with partial "utils/description" . }}
|
||||
<meta name="twitter:description" content="{{ trim (. | plainify) "\n" }}" />
|
||||
<meta name="twitter:description" content="{{ trim (. | plainify) "\n" | safeHTML }}" />
|
||||
{{- end }}
|
||||
{{- with .Site.Social.twitter -}}
|
||||
<meta name="twitter:site" content="@{{ . }}" />
|
||||
|
Loading…
Reference in New Issue
Block a user