2020-04-24 07:22:36 -06:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-04-24 07:22:36 -06:00
|
|
|
|
|
|
|
package markdown
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/url"
|
|
|
|
|
2022-06-08 02:59:16 -06:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2022-06-26 08:19:22 -06:00
|
|
|
"code.gitea.io/gitea/modules/translation"
|
2022-04-03 03:46:48 -06:00
|
|
|
|
2020-04-24 07:22:36 -06:00
|
|
|
"github.com/yuin/goldmark/ast"
|
|
|
|
)
|
|
|
|
|
2022-06-08 02:59:16 -06:00
|
|
|
func createTOCNode(toc []markup.Header, lang string) ast.Node {
|
2020-04-24 07:22:36 -06:00
|
|
|
details := NewDetails()
|
|
|
|
summary := NewSummary()
|
|
|
|
|
2022-06-26 08:19:22 -06:00
|
|
|
summary.AppendChild(summary, ast.NewString([]byte(translation.NewLocale(lang).Tr("toc"))))
|
2020-04-24 07:22:36 -06:00
|
|
|
details.AppendChild(details, summary)
|
|
|
|
ul := ast.NewList('-')
|
|
|
|
details.AppendChild(details, ul)
|
|
|
|
currentLevel := 6
|
|
|
|
for _, header := range toc {
|
|
|
|
if header.Level < currentLevel {
|
|
|
|
currentLevel = header.Level
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, header := range toc {
|
|
|
|
for currentLevel > header.Level {
|
|
|
|
ul = ul.Parent().(*ast.List)
|
|
|
|
currentLevel--
|
|
|
|
}
|
|
|
|
for currentLevel < header.Level {
|
|
|
|
newL := ast.NewList('-')
|
|
|
|
ul.AppendChild(ul, newL)
|
|
|
|
currentLevel++
|
|
|
|
ul = newL
|
|
|
|
}
|
|
|
|
li := ast.NewListItem(currentLevel * 2)
|
|
|
|
a := ast.NewLink()
|
|
|
|
a.Destination = []byte(fmt.Sprintf("#%s", url.PathEscape(header.ID)))
|
|
|
|
a.AppendChild(a, ast.NewString([]byte(header.Text)))
|
|
|
|
li.AppendChild(li, a)
|
|
|
|
ul.AppendChild(ul, li)
|
|
|
|
}
|
|
|
|
|
|
|
|
return details
|
|
|
|
}
|