mirror of
https://github.com/TxtDot/dalet-rs.git
synced 2025-03-13 11:14:37 +03:00
fix: gemtext parse whitespace in links
This commit is contained in:
parent
2fd17796c0
commit
1671a8065b
3 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,7 @@ pub fn parse_gemtext(s: &str) -> Result<Vec<Tag>, GemTextParseError> {
|
|||
list.clear();
|
||||
} else if line.starts_with("=>") {
|
||||
let body = line.split_off(2);
|
||||
let mut body = body.trim().splitn(2, " ");
|
||||
let mut body = body.trim().splitn(2, char::is_whitespace);
|
||||
|
||||
let url = body.next().ok_or(GemTextParseError::InvalidLink)?.trim();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue