mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-06 14:37:40 +03:00
Fix #96
This commit is contained in:
parent
e23eaf0be0
commit
90d3063f93
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ pub fn format_url(url: &str) -> String {
|
||||||
|
|
||||||
// Rewrite Reddit links to Libreddit in body of text
|
// Rewrite Reddit links to Libreddit in body of text
|
||||||
pub fn rewrite_url(text: &str) -> String {
|
pub fn rewrite_url(text: &str) -> String {
|
||||||
let re = Regex::new(r#"href="(https://|http://|)(www.|)(reddit).(com)/"#).unwrap();
|
let re = Regex::new(r#"href="(https://|http://|)(www.|old.|np.|)(reddit).(com)/"#).unwrap();
|
||||||
re.replace_all(text, r#"href="/"#).to_string()
|
re.replace_all(text, r#"href="/"#).to_string()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue