add tkg
All checks were successful
CI/CD Pipeline / test (push) Successful in 1m53s

This commit is contained in:
2024-02-19 18:37:00 +01:00
parent fac2be0ed4
commit 1539906053
224 changed files with 928 additions and 0 deletions

View File

@ -22,6 +22,7 @@ mod table;
use std::iter::Peekable;
use abschnitt::Abschnitt;
use log::trace;
use roxmltree::{Children, Node};
use crate::{
@ -142,6 +143,7 @@ impl Listelem {
let text = c.next().unwrap().text().unwrap().into();
trace!("Parsed Listelem with text='{text}'");
assert_eq!(c.next(), None);
Self { symbol, text }