mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 13:37:40 +03:00
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:
parent
3ff907d6c1
commit
15fcafc99a
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue