From 9ced39ef81887794f4ff880f45d1d0b07ffbb10b Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 7 Dec 2025 17:44:17 +0000 Subject: [PATCH] Strong --- blog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blog.py b/blog.py index ab044246e..ea527e3e0 100644 --- a/blog.py +++ b/blog.py @@ -222,9 +222,9 @@ def html_blog_post_markdown(content: str) -> str: ctr += 1 continue if '<' in section: - section = '>' + section.replace('<', '<', 1) + section = '>' + section.replace('<', '<', 1) elif '\n' in section: - section = '>' + section.replace('\n', '\n', 1) + section = '>' + section.replace('\n', '\n', 1) else: section = markdown_text + section new_content2 += section