mirror of
https://github.com/docsifyjs/docsify.git
synced 2025-12-08 19:55:52 +00:00
29 lines
655 B
JavaScript
29 lines
655 B
JavaScript
/**
|
|
* Gen toc tree
|
|
* @link https://github.com/killercup/grock/blob/5280ae63e16c5739e9233d9009bc235ed7d79a50/styles/solarized/assets/js/behavior.coffee#L54-L81
|
|
* @param {Array} toc
|
|
* @param {Number} maxLevel
|
|
* @return {Array}
|
|
*/
|
|
export function genTree(toc, maxLevel) {
|
|
const headlines = []
|
|
const last = {}
|
|
|
|
toc.forEach(headline => {
|
|
const level = headline.level || 1
|
|
const len = level - 1
|
|
|
|
if (level > maxLevel) {
|
|
return
|
|
}
|
|
if (last[len]) {
|
|
last[len].children = (last[len].children || []).concat(headline)
|
|
} else {
|
|
headlines.push(headline)
|
|
}
|
|
last[level] = headline
|
|
})
|
|
|
|
return headlines
|
|
}
|