🎨 Improve list item convert to doc https://github.com/siyuan-note/siyuan/issues/12411
This commit is contained in:
parent
130420c6dc
commit
0f275b975d
1 changed files with 3 additions and 0 deletions
|
@ -67,6 +67,9 @@ func ListItem2Doc(srcListItemID, targetBoxID, targetPath string) (srcRootBlockID
|
|||
|
||||
var children []*ast.Node
|
||||
for c := listItemNode.FirstChild; nil != c; c = c.Next {
|
||||
if c.IsMarker() {
|
||||
continue
|
||||
}
|
||||
children = append(children, c)
|
||||
}
|
||||
if 1 > len(children) {
|
||||
|
|
Loading…
Add table
Reference in a new issue