You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apparently "\u{a0}" is considered part of e-mail links, as shown by this failing test case:
#[test]fntest_link_finder(){let text =
"this is a mail address:\u{a0}[email protected]\u{a0}surrounded by non-breaking spaces";letmut links = LinkFinder::new().links(text);assert_eq!(links.next().unwrap().as_str(),"[email protected]");}
As non-breaking spaces are common in e-mail bodies, this leads to misidentification of links.
The text was updated successfully, but these errors were encountered:
Apparently "\u{a0}" is considered part of e-mail links, as shown by this failing test case:
As non-breaking spaces are common in e-mail bodies, this leads to misidentification of links.
The text was updated successfully, but these errors were encountered: