From aad70a597078fb94a97be42d9b874a3e16fd5619 Mon Sep 17 00:00:00 2001
From: Bob Mottram
Date: Mon, 18 May 2020 12:17:13 +0100
Subject: [PATCH] Clearer breaks between blog entries
---
blog.py | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/blog.py b/blog.py
index aad118a7..019b34c3 100644
--- a/blog.py
+++ b/blog.py
@@ -225,7 +225,7 @@ def htmlBlogPostContent(authorized: bool,
'content')
blogStr += '
' + contentStr + '\n'
- blogStr += '
\n'
+ blogStr += '
\n'
if not linkedAuthor:
blogStr += '' + \
- translate['Replies'].lower() + ': ' + str(replies) + '
\n'
+ translate['Replies'].lower() + ': ' + str(replies) + \
+ '
'
else:
blogStr += '' + translate['Replies'] + '
\n'
blogStr += '\n'
@@ -252,7 +253,8 @@ def htmlBlogPostContent(authorized: bool,
nickname, domain, domainFull,
postJsonObject['object']['id'])
blogStr += blogRepliesStr.replace('>' + titleStr + '<', '')
- blogStr += '
\n'
+ blogStr += '
'
+ blogStr += '
\n'
return blogStr