diff --git a/templates/archive.html b/templates/archive.html index 86f2267..f2f9dd3 100644 --- a/templates/archive.html +++ b/templates/archive.html @@ -58,7 +58,7 @@ {{ post.date | date(format="%d %b", locale=date_locale) }} - {{ post.title }} + {{ post.title | markdown(inline=true) | safe }} {% endfor %} diff --git a/templates/page.html b/templates/page.html index 63dbb02..7099297 100644 --- a/templates/page.html +++ b/templates/page.html @@ -108,7 +108,7 @@ Current section extra: {% if current_section %}{{ current_section.extra | json_e

- {{ page.title }} + {{ page.title | markdown(inline=true) | safe }}