We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10c97ae commit a1d272eCopy full SHA for a1d272e
1 file changed
layouts/partials/seo.html
@@ -1,7 +1,8 @@
1
{{- $titleParts := slice }}
2
3
{{- with .Title }}
4
-{{- $titleParts = $titleParts | append (. | markdownify | plainify) }}
+{{- $titleParts = $titleParts
5
+ | append (. | markdownify | plainify | htmlUnescape) }}
6
{{- end }}
7
8
{{- /*
@@ -11,7 +12,7 @@
11
12
{{- $collection := partial "GetCollection.html" . }}
13
{{- if and $collection (ne . $collection) }}
14
{{- $titleParts = $titleParts
- | append ($collection.Title | markdownify | plainify) }}
15
+ | append ($collection.Title | markdownify | plainify | htmlUnescape) }}
16
17
18
{{- $titleDelimiter := " - " }}
0 commit comments