Fix images embedded by rewrite_urls() having an empty <p></p> above and below them that caused weird gaps in some scenarios

This commit is contained in:
Butter Cat 2024-10-17 20:03:51 -04:00
parent 3ff907d6c1
commit 15fcafc99a
No known key found for this signature in database
GPG key ID: FF37BE4FDDB74419

View file

@ -951,7 +951,7 @@ pub fn rewrite_urls(input_text: &str) -> String {
}
// image_url contains > at the end of it, and right above this we remove image_text's front >, leaving us with just a single > between them
let image_to_replace = format!("<a href=\"{image_url}{image_caption}</a>");
let image_to_replace = format!("<p><a href=\"{image_url}{image_caption}</a></p>");
// _image_replacement needs to be in scope for the replacement at the bottom of the loop
let mut _image_replacement = String::new();