This commit is contained in:
parent
4b00d744b6
commit
12c1348ae6
@ -109,6 +109,11 @@ impl Abschnitt {
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
// Stop parsing if we reached "Anlagen" (e.g. Schifffahrtsgesetz)
|
||||
if Ueberschrift::test(child, "anlage") {
|
||||
return false;
|
||||
}
|
||||
if Ueberschrift::test(child, "titel") {
|
||||
c.next();
|
||||
continue;
|
||||
@ -462,6 +467,15 @@ impl Liste {
|
||||
|
||||
let mut c = n.children().peekable();
|
||||
|
||||
// 162 Schifffahrtsgesetz show use that a 'schlussteil' can be at the start of a list
|
||||
while let Some(child) = c.peek() {
|
||||
if Schlussteil::test(child) {
|
||||
content.push(Content::Text(Schlussteil::parse(c.next().unwrap()).content));
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
content.push(Ziffernliste::parse(c.next().unwrap()).get_content());
|
||||
|
||||
while let Some(child) = c.peek() {
|
||||
|
Loading…
Reference in New Issue
Block a user