mirror of
https://github.com/TxtDot/dalet-rs.git
synced 2025-03-13 11:14:37 +03:00
fix: gemtext list parsing
This commit is contained in:
parent
8fb4f31ece
commit
2fd17796c0
3 changed files with 5 additions and 5 deletions
|
@ -19,12 +19,12 @@ pub fn parse_gemtext(s: &str) -> Result<Vec<Tag>, GemTextParseError> {
|
|||
for line in s.lines() {
|
||||
let mut line = line.trim().to_owned();
|
||||
|
||||
if list_before && !line.starts_with("* ") {
|
||||
if preformatted && !line.starts_with("```") {
|
||||
preformatted_text.push(line);
|
||||
} else if list_before && !line.starts_with("* ") {
|
||||
page.push(Tag::Ul(list.clone()));
|
||||
list_before = false;
|
||||
list.clear();
|
||||
} else if preformatted && !line.starts_with("```") {
|
||||
preformatted_text.push(line);
|
||||
} else if line.starts_with("=>") {
|
||||
let body = line.split_off(2);
|
||||
let mut body = body.trim().splitn(2, " ");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue