mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-13 00:17:11 +00:00
Fix parser in paragraph
This commit is contained in:
parent
75d5efa443
commit
5efc52e03d
1 changed files with 8 additions and 3 deletions
|
@ -142,6 +142,7 @@ impl<'a> Parser<'a> {
|
|||
"italic" => Modifier::Italic,
|
||||
"underline" => Modifier::Underline,
|
||||
"invert" => Modifier::Invert,
|
||||
"crossed_out" => Modifier::CrossedOut,
|
||||
_ => Modifier::Reset,
|
||||
}
|
||||
}
|
||||
|
@ -179,9 +180,13 @@ impl<'a> Iterator for Parser<'a> {
|
|||
self.reset();
|
||||
self.next()
|
||||
} else if s == " " && self.mark {
|
||||
self.styling = true;
|
||||
self.update_style();
|
||||
self.next()
|
||||
if self.styling {
|
||||
Some((s, self.style))
|
||||
} else {
|
||||
self.styling = true;
|
||||
self.update_style();
|
||||
self.next()
|
||||
}
|
||||
} else if self.mark && !self.styling {
|
||||
self.cmd_string.push_str(s);
|
||||
self.next()
|
||||
|
|
Loading…
Reference in a new issue