From 30b92e9f7c3241efee4cd14f4776b5ed755e01a9 Mon Sep 17 00:00:00 2001 From: JanisV Date: Tue, 15 Oct 2024 17:34:01 +0300 Subject: [PATCH] Improve processing GitHub markdown format --- app.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 5425102..f45c8ca 100644 --- a/app.py +++ b/app.py @@ -20,9 +20,10 @@ PROCESS_PRE_RELEASES = False github_extra_html_tags_pattern = re.compile("

|

|||.*?|" - "||||||", + "||||||||" + "||", flags=re.DOTALL) -github_img_html_tag_pattern = re.compile("") +github_img_html_tag_pattern = re.compile("") db = SQLAlchemy() migrate = Migrate()