🎨 大纲面板加入文档标题调整缩进 https://github.com/siyuan-note/siyuan/issues/5011
This commit is contained in:
parent
5c63e4a56d
commit
efd668f956
1 changed files with 14 additions and 22 deletions
|
@ -82,30 +82,22 @@ func Outline(rootID string) (ret []*Path, err error) {
|
|||
}
|
||||
|
||||
ret = toFlatTree(blocks, 0, "outline")
|
||||
if 0 < len(ret) {
|
||||
children := ret[0].Blocks
|
||||
ret = nil
|
||||
for _, b := range children {
|
||||
resetDepth(b, 0)
|
||||
ret = append(ret, &Path{
|
||||
ID: b.ID,
|
||||
Box: b.Box,
|
||||
Name: b.Content,
|
||||
Type: b.Type,
|
||||
SubType: b.SubType,
|
||||
Blocks: b.Children,
|
||||
Depth: 0,
|
||||
Count: b.Count,
|
||||
})
|
||||
}
|
||||
}
|
||||
resetDepth(ret)
|
||||
return
|
||||
}
|
||||
|
||||
func resetDepth(b *Block, depth int) {
|
||||
b.Depth = depth
|
||||
b.Count = len(b.Children)
|
||||
for _, c := range b.Children {
|
||||
resetDepth(c, depth+1)
|
||||
func resetDepth(paths []*Path) {
|
||||
for _, p := range paths {
|
||||
for _, b := range p.Blocks {
|
||||
resetDepth0(b, p.Depth)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func resetDepth0(b *Block, depth int) {
|
||||
b.Depth = depth + 1
|
||||
b.Count = len(b.Children)
|
||||
for _, c := range b.Children {
|
||||
resetDepth0(c, depth+1)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue