From 252ec49b5faabc9d4613b26f3adf75141a981b11 Mon Sep 17 00:00:00 2001
From: Malte Schmitz <schmitz@isp.uni-luebeck.de>
Date: Fri, 3 Sep 2021 14:21:43 +0200
Subject: [PATCH] Do not render titles as paragraphs

Having <p> inside <h2> or <h1> applies the CSS style line-height: 2rem which looks not good
---
 _includes/post-list-frontpage.html | 2 +-
 _includes/post-list.html           | 4 ++--
 _layouts/post.html                 | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/_includes/post-list-frontpage.html b/_includes/post-list-frontpage.html
index c842bb58..ea1bbb77 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 | markdownify }}</a></h2>
+						<h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title | markdownify | remove: '<p>' | remove: '</p>' }}</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 69fba8c4..365be2f2 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 | markdownify }}</a></h2>
+						<h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title | markdownify | remove: '<p>' | remove: '</p>' }}</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 | markdownify }}</a></h2>
+						<h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title | markdownify | remove: '<p>' | remove: '</p>' }}</a></h2>
 						{% include post-meta.html %}
 						{{ page.excerpt | strip_html | markdownify | truncatewords: 60 }}
 
diff --git a/_layouts/post.html b/_layouts/post.html
index fa31aee6..44b5a4d5 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 | markdownify}}</h1>
+    <h1>{{ page.title | markdownify | remove: '<p>' | remove: '</p>' }}</h1>
 		{% include post-meta.html %}
 
 		{{ content }}
-- 
GitLab