From 0788e48bb2f4a021afd0832d8e56c7d38308e93e Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Sun, 6 Mar 2016 20:51:16 -0500 Subject: [PATCH] Markdownify post titles --- _includes/post-single.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/post-single.html b/_includes/post-single.html index 37390567..3b4032bb 100644 --- a/_includes/post-single.html +++ b/_includes/post-single.html @@ -1,8 +1,8 @@
{% if post.link %} -

{{ post.title }}

+

{% if post.id %}{{ post.title | markdownify | remove: "

" | remove: "

" }}{% else %}{{ post.title }}{% endif %}

{% else %} -

{{ post.title }}

+

{% if post.id %}{{ post.title | markdownify | remove: "

" | remove: "

" }}{% else %}{{ post.title }}{% endif %}

{% endif %} {% if post.excerpt %}

{{ post.excerpt | markdownify | strip_html | truncate: 160 }}

{% endif %}
\ No newline at end of file