autoformat
This commit is contained in:
parent
497dd2e82a
commit
df2613d083
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ fn preprocess(string: String) -> String {
|
|||
let start_delims = vec![b'(', b'<'];
|
||||
let end_delims = vec![b')', b'>'];
|
||||
let links = finder.links(result.as_str()).filter(|link| {
|
||||
// link.end() is the first char AFTER the link!
|
||||
// link.end() is the first char AFTER the link!
|
||||
(link.start() == 0 || link.end() == result.len())
|
||||
|| (!start_delims.contains(&result_vec[link.start() - 1])
|
||||
&& !end_delims.contains(&result_vec[link.end()]))
|
||||
|
|
Loading…
Reference in a new issue