mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
parent
704f2fbaf1
commit
abafb39041
@ -413,6 +413,11 @@ impl<'a> Builder<'a> {
|
|||||||
|
|
||||||
self.interrupt(Interruption::List, styles, false)?;
|
self.interrupt(Interruption::List, styles, false)?;
|
||||||
|
|
||||||
|
if let Content::Item(_) = content {
|
||||||
|
self.list.accept(content, styles);
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
if self.par.accept(content, styles) {
|
if self.par.accept(content, styles) {
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
@ -454,8 +454,8 @@ impl Marker {
|
|||||||
/// Wrap all children after the marker (excluding trailing trivia) in a node
|
/// Wrap all children after the marker (excluding trailing trivia) in a node
|
||||||
/// with the given `kind`.
|
/// with the given `kind`.
|
||||||
pub fn end(self, p: &mut Parser, kind: NodeKind) {
|
pub fn end(self, p: &mut Parser, kind: NodeKind) {
|
||||||
let until = p.trivia_start();
|
let until = p.trivia_start().0.max(self.0);
|
||||||
let children = p.children.drain(self.0 .. until.0).collect();
|
let children = p.children.drain(self.0 .. until).collect();
|
||||||
p.children
|
p.children
|
||||||
.insert(self.0, InnerNode::with_children(kind, children).into());
|
.insert(self.0, InnerNode::with_children(kind, children).into());
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 27 KiB |
@ -5,14 +5,9 @@
|
|||||||
|
|
||||||
---
|
---
|
||||||
1. First.
|
1. First.
|
||||||
2. Second.
|
2. Indented
|
||||||
|
|
||||||
1. Back to first.
|
+ Second
|
||||||
|
|
||||||
---
|
|
||||||
2. Second
|
|
||||||
1. First
|
|
||||||
+ Indented
|
|
||||||
|
|
||||||
---
|
---
|
||||||
// Test automatic numbering in summed content.
|
// Test automatic numbering in summed content.
|
||||||
@ -35,6 +30,12 @@
|
|||||||
+ A
|
+ A
|
||||||
+ B
|
+ B
|
||||||
|
|
||||||
|
---
|
||||||
|
// Mix of different lists
|
||||||
|
- List
|
||||||
|
+ Enum
|
||||||
|
/ Desc: List
|
||||||
|
|
||||||
---
|
---
|
||||||
// Test label closure.
|
// Test label closure.
|
||||||
#enum(
|
#enum(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user