diff --git a/_includes/post-list-frontpage.html b/_includes/post-list-frontpage.html index b5196dc55824ab916ab956d06d238063f7c81dc4..c842bb58c085ba28dd151bae60862019efea492c 100644 --- a/_includes/post-list-frontpage.html +++ b/_includes/post-list-frontpage.html @@ -5,7 +5,7 @@ <li class="item item--post"> <article class="article article--post"> - <h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h2> + <h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title | markdownify }}</a></h2> {% include post-meta.html %} {{ page.excerpt | strip_html | markdownify | truncatewords: 60 }} diff --git a/_includes/post-list.html b/_includes/post-list.html index 6655265ac2d7c828e0fe940bbfe97d28e32ca6de..69fba8c493c68c93c9180dfb166e71d92cbc054d 100644 --- a/_includes/post-list.html +++ b/_includes/post-list.html @@ -5,7 +5,7 @@ <li class="item item--post"> <article class="article article--post"> - <h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h2> + <h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title | markdownify }}</a></h2> {% include post-meta.html %} {{ page.excerpt | strip_html | markdownify | truncatewords: 60 }} @@ -22,7 +22,7 @@ <li class="item item--post"> <article class="article article--post"> - <h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h2> + <h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title | markdownify }}</a></h2> {% include post-meta.html %} {{ page.excerpt | strip_html | markdownify | truncatewords: 60 }} diff --git a/_layouts/post.html b/_layouts/post.html index e2089690e531e2fe47df5edb38abedc8d3007ca7..fa31aee606eb5bc44cf0f71dc24fe95e8266e612 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -10,7 +10,7 @@ layout: default <article class="article article--post blogpost content typeset"> - <h1>{{ page.title }}</h1> + <h1>{{ page.title | markdownify}}</h1> {% include post-meta.html %} {{ content }}