- {{ page.title }} + {{ page.title | markdown(inline=true) | safe }}
-
@@ -297,13 +297,13 @@ Current section extra: {% if current_section %}{{ current_section.extra | json_e
{%- if left_link and left_label and left_title -%}
← {{ left_label }}
-
{{ left_title | truncate(length=100, end="…") }}
+{{ left_title | truncate(length=100, end="…") | markdown(inline=true) | safe }}
{%- endif -%}
{%- if right_link and right_label and right_title -%}
{{ right_label }} →
-
diff --git a/templates/partials/cards_pages.html b/templates/partials/cards_pages.html
index abb9f84..0486829 100644
--- a/templates/partials/cards_pages.html
+++ b/templates/partials/cards_pages.html
@@ -38,10 +38,10 @@
{% endif %}
{{ right_title | truncate(length=100, end="…") }}
+{{ right_title | truncate(length=100, end="…") | markdown(inline=true) | safe }}
{%- endif -%}
-
{{ page.title }}
+{{ page.title | markdown(inline=true) | safe }}
{% if page.description %}
- {{ page.description }}
+ {{ page.description | markdown(inline=true) | safe }}
{% endif %}