mirror of
https://github.com/docsifyjs/docsify.git
synced 2026-01-25 15:23:21 +00:00
* chore: added new linter config * chore: linting fixes * chore: refactore in linting config and minor linting fixes
31 lines
709 B
JavaScript
31 lines
709 B
JavaScript
/**
|
|
* Gen toc tree
|
|
* @link https://github.com/killercup/grock/blob/5280ae63e16c5739e9233d9009bc235ed7d79a50/styles/solarized/assets/js/behavior.coffee#L54-L81
|
|
* @param {Array} toc List of TOC elements
|
|
* @param {Number} maxLevel Deep level
|
|
* @return {Array} Headlines
|
|
*/
|
|
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;
|
|
}
|