{{ trim .Title " " }}
+{{ trim .Title " " | markdownify }}
{{ partial "post-language-switcher.html" . }}{{ i18n .Data.Singular | humanize }}: {{ .Title }}
+{{ i18n .Data.Singular | humanize | markdownify }}: {{ .Title | markdownify }}
diff --git a/layouts/_default/terms.html b/layouts/_default/terms.html index 60e624a..2eb6d47 100644 --- a/layouts/_default/terms.html +++ b/layouts/_default/terms.html @@ -3,13 +3,13 @@ {{ .Content }}{{ i18n .Title }}
+{{ i18n .Title | markdownify }}
-
{{ range .Data.Terms }}
{{ $postsNum := len (where .Pages "Params.hidden" "!=" true) }}
{{ if gt $postsNum 0 }}
- - {{ .Page.Title }} + {{ .Page.Title | markdownify }} ({{ $postsNum }}) {{ end}} diff --git a/layouts/partials/post-pagination.html b/layouts/partials/post-pagination.html index a589362..b6a1c87 100644 --- a/layouts/partials/post-pagination.html +++ b/layouts/partials/post-pagination.html @@ -4,12 +4,12 @@
{{ if .NextInSection }}
- {{ .NextInSection.Title | default $toNewPostMessage }}
+ {{ .NextInSection.Title | default $toNewPostMessage | markdownify }}
{{ end }}
{{ if .PrevInSection }}
- {{ .PrevInSection.Title | default $toOldPostMessage }}
+ {{ .PrevInSection.Title | default $toOldPostMessage | markdownify }}
{{ end }}