");
+ let image_to_replace = format!("
");
+
+ image_text = image_text.replace("\\"", "\"");
+
+ let mut _image_replacement = String::new();
+
+ if REDDIT_PREVIEW_REGEX.find(&image_text).is_none() {
+ _image_replacement = format!("{image_text}");
+ } else {
+ _image_replacement = format!("");
+ }
text1 = REDDIT_PREVIEW_REGEX
.replace(&text1, formatted_url)
- .replace(&image_to_replace, &image_replacement)
+ .replace(&image_to_replace, &_image_replacement)
.to_string()
}
}
@@ -1169,6 +1185,6 @@ fn test_rewriting_image_links() {
https://preview.redd.it/bdfdxkjj2xo31.png?width=2560&format=png&auto=webp&s=d0fa420ece27605e882e89cb4711d75d774322ac
caption 1
caption 2
"#;
- let output = r#"




"#;
+ let output = r#"
caption 1
caption 2"#;
assert_eq!(rewrite_urls(input), output);
}
diff --git a/static/style.css b/static/style.css
index a85ab75..6c6a546 100644
--- a/static/style.css
+++ b/static/style.css
@@ -187,6 +187,15 @@ nav #redlib {
vertical-align: -2px;
}
+figure {
+ margin: 0;
+}
+
+figcaption {
+ margin-top: 5px;
+ text-align: center;
+}
+
#settings_link {
opacity: 0.8;
margin-left: 10px;
@@ -979,10 +988,6 @@ a.search_subreddit:hover {
vertical-align: bottom;
}
-.gallery figcaption {
- margin-top: 5px;
-}
-
.gallery .outbound_url {
color: var(--accent);
text-overflow: ellipsis;
@@ -1010,6 +1015,9 @@ a.search_subreddit:hover {
.post_body img {
max-width: 100%;
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
}
.post_poll {