mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 22:17:41 +03:00
Restore the behavior that the "rewrite_urls_removes_backslashes_and_rewrites_url" test looks for
This commit is contained in:
parent
12e331d24b
commit
db058f6d9e
1 changed files with 7 additions and 3 deletions
10
src/utils.rs
10
src/utils.rs
|
@ -928,12 +928,13 @@ pub fn rewrite_urls(input_text: &str) -> String {
|
||||||
text1 = REDDIT_EMOJI_REGEX
|
text1 = REDDIT_EMOJI_REGEX
|
||||||
.replace_all(&text1, format_url(REDDIT_EMOJI_REGEX.find(&text1).map(|x| x.as_str()).unwrap_or_default()))
|
.replace_all(&text1, format_url(REDDIT_EMOJI_REGEX.find(&text1).map(|x| x.as_str()).unwrap_or_default()))
|
||||||
.to_string()
|
.to_string()
|
||||||
// Remove (html-encoded) "\" from URLs.
|
|
||||||
.replace("%5C", "")
|
|
||||||
.replace("\\_", "_");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Remove (html-encoded) "\" from URLs.
|
||||||
|
text1 = text1
|
||||||
|
.replace("%5C", "")
|
||||||
|
.replace("\\_", "_");
|
||||||
|
|
||||||
// Rewrite external media previews to Redlib
|
// Rewrite external media previews to Redlib
|
||||||
loop {
|
loop {
|
||||||
|
@ -1270,6 +1271,9 @@ mod tests {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn rewrite_urls_removes_backslashes_and_rewrites_url() {
|
fn rewrite_urls_removes_backslashes_and_rewrites_url() {
|
||||||
|
println!("{}", rewrite_urls(
|
||||||
|
"<a href=\"https://new.reddit.com/r/linux%5C_gaming/comments/x/just%5C_a%5C_test%5C/\">https://new.reddit.com/r/linux\\_gaming/comments/x/just\\_a\\_test/</a>"
|
||||||
|
));
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
rewrite_urls(
|
rewrite_urls(
|
||||||
"<a href=\"https://new.reddit.com/r/linux%5C_gaming/comments/x/just%5C_a%5C_test%5C/\">https://new.reddit.com/r/linux\\_gaming/comments/x/just\\_a\\_test/</a>"
|
"<a href=\"https://new.reddit.com/r/linux%5C_gaming/comments/x/just%5C_a%5C_test%5C/\">https://new.reddit.com/r/linux\\_gaming/comments/x/just\\_a\\_test/</a>"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue