diff --git a/layouts/partials/post.html b/layouts/partials/post.html index 32b1905..d2cde50 100644 --- a/layouts/partials/post.html +++ b/layouts/partials/post.html @@ -1,6 +1,6 @@
-

{{ .Title }}

+

{{ .Title | markdownify }}

{{/* Determine whether to display the date & description based on tags */}} diff --git a/layouts/partials/prev-next.html b/layouts/partials/prev-next.html index 38376c0..33a27c7 100644 --- a/layouts/partials/prev-next.html +++ b/layouts/partials/prev-next.html @@ -4,7 +4,7 @@ ← {{ i18n "previous" }}: - {{ .Title }} + {{ .Title | markdownify }}

{{ i18n "next" }}: - {{ .Title }} + {{ .Title | markdownify }} →