From fb297ebdee6559dd51a13d033366c3202e595792 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 7 Dec 2025 22:47:45 +0000 Subject: [PATCH] Allow markdown-style headers in ordinary posts --- webapp_post.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/webapp_post.py b/webapp_post.py index d9c0a16bd..db1eed204 100644 --- a/webapp_post.py +++ b/webapp_post.py @@ -3142,8 +3142,7 @@ def individual_post_as_html(signing_priv_key_pem: str, object_content = \ format_mixed_right_to_left(object_content, system_language) # replace any markdown headers with html - if post_is_blog: - object_content = html_blog_post_markdown(object_content) + object_content = html_blog_post_markdown(object_content) # show quote toot link quote_url = get_quote_toot_url(post_json_object) if quote_url: