add gewo
Some checks failed
CI/CD Pipeline / test (push) Failing after 2m1s

This commit is contained in:
2024-03-15 23:01:56 +01:00
parent 01a9039e27
commit 9a873674fa
339 changed files with 1291 additions and 1 deletions

View File

@ -179,7 +179,11 @@ impl Listelem {
let symbol = Symbol::parse(c.next().unwrap());
let text = c.next().unwrap().text().unwrap().into();
let text = if let Some(c) = c.next() {
c.text().unwrap().into()
} else {
String::new()
};
Expect::empty(c.next());