enable 'horizontal stack' of elements
All checks were successful
CI/CD Pipeline / test (push) Successful in 1m55s

This commit is contained in:
2024-02-17 20:02:40 +01:00
parent 91b5ac9c09
commit 6731f4f0d0
13 changed files with 1191 additions and 1191 deletions

View File

@ -66,7 +66,7 @@ impl Absatz {
if content.len() == 1 {
(par_id, content[0].clone())
} else {
(par_id, Content::List(content))
(par_id, Content::Multi(content))
}
}

View File

@ -69,7 +69,7 @@ impl Abschnitt {
} else {
let mut contents = Vec::new();
contents.extend(absatze.iter().cloned());
builder.new_par(par_id, Content::Item(contents));
builder.new_par(par_id, Content::List(contents));
}
ret.handle_metadata(&mut c, builder);