From 8d4a9a0ff4c5bcccb629efa793ca7f5cbf1d09ad Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 24 Dec 2022 14:15:40 +0000 Subject: [PATCH] Text mode separator --- webapp_post.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webapp_post.py b/webapp_post.py index 98ff74049..9dc94656e 100644 --- a/webapp_post.py +++ b/webapp_post.py @@ -2917,6 +2917,7 @@ def html_conversation_thread(post_id: str, html_header_with_external_style(css_filename, instance_title, None) separator_str = html_post_separator(base_dir, None) + text_mode_separator = '

' minimize_all_images = False if nickname in min_images_for_accounts: @@ -2951,7 +2952,7 @@ def html_conversation_thread(post_id: str, dogwhistles, minimize_all_images) if post_str: - conv_str += separator_str + post_str + conv_str += text_mode_separator + separator_str + post_str - conv_str += html_footer() + conv_str += text_mode_separator + html_footer() return conv_str