skip debug line
Some checks failed
CI/CD Pipeline / test (push) Has been cancelled

This commit is contained in:
philipp 2024-02-15 12:10:01 +01:00
parent 9e284dbb6a
commit c471d1ffe9

View File

@ -191,7 +191,6 @@ impl Abschnitt {
if Liste::test(child) { if Liste::test(child) {
let liste = Liste::parse(c.next().unwrap()); let liste = Liste::parse(c.next().unwrap());
let mut to_add = vec![Content::Text(abs.content), liste.get_content()]; let mut to_add = vec![Content::Text(abs.content), liste.get_content()];
println!("{to_add:#?}");
if let Some(subchild) = c.peek() { if let Some(subchild) = c.peek() {
if Absatz::test_with_typ(subchild, "satz") { if Absatz::test_with_typ(subchild, "satz") {
// After a 'liste' there can be a '<absatz typ="satz"' which should be part of the list // After a 'liste' there can be a '<absatz typ="satz"' which should be part of the list