From 07b8dc30c7fe037a276d469151366dda5cf20246 Mon Sep 17 00:00:00 2001 From: Leonora Tindall Date: Mon, 31 Oct 2022 23:38:03 -0500 Subject: [PATCH] Fix large CW indicators --- src/syndication.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/syndication.rs b/src/syndication.rs index 9d52560..a3c4c8e 100644 --- a/src/syndication.rs +++ b/src/syndication.rs @@ -84,10 +84,10 @@ pub fn channel_for_posts_page( let mut body_text = String::new(); if item.share_tree.len() == 1 { - body_text.push_str("(in reply to another post)\n---\n") + body_text.push_str("(in reply to another post)\n\n---\n\n") } else if item.share_tree.len() > 1 { body_text.push_str(&format!( - "(in reply to {} other posts)\n---\n", + "(in reply to {} other posts)\n\n---\n\n", item.share_tree.len() )); } @@ -100,7 +100,7 @@ pub fn channel_for_posts_page( body_text.push_str(&format!(" {},", cw)); } body_text.pop(); // Remove trailing comma - body_text.push_str("\n---\n") + body_text.push_str("\n\n---\n\n") }; if !item.tags.is_empty() {