enable 'horizontal stack' of elements
All checks were successful
CI/CD Pipeline / test (push) Successful in 1m55s
All checks were successful
CI/CD Pipeline / test (push) Successful in 1m55s
This commit is contained in:
@ -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))
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user