From 80d6cc5d5a21efc8cf4bca36d44cf0d980e21d70 Mon Sep 17 00:00:00 2001 From: vvzvlad Date: Sat, 19 Apr 2025 04:33:47 +0300 Subject: [PATCH] add line break in debug HTML --- post_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post_parser.py b/post_parser.py index 3829f2b..af33eb5 100644 --- a/post_parser.py +++ b/post_parser.py @@ -443,7 +443,7 @@ class PostParser: html_content = [] if debug: - html_content.append(f'
Title: {data["html"]["title"]}
') + html_content.append(f'
Title: {data["html"]["title"]}

') html_content.append(f'
{data["html"]["media"]}
') html_content.append(f'
{data["html"]["body"]}
') html_content.append(f'')