Skip to content

Commit 0d59ee9

Browse files
committed
fix(render): Toc rendering error, fixed #106
1 parent 0aead89 commit 0d59ee9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/core/render/compiler.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,9 @@ export function sidebar (text, level) {
106106
html = markdown(text)
107107
html = html.match(/<ul[^>]*>([\s\S]+)<\/ul>/g)[0]
108108
} else {
109-
const tree = genTree(toc, level)
109+
const tree = cacheTree[currentPath] || genTree(toc, level)
110110
html = treeTpl(tree, '<ul>')
111+
cacheTree[currentPath] = tree
111112
}
112113

113114
return html

src/core/render/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export function renderMixin (proto) {
7575

7676
this._renderTo('.sidebar-nav', sidebar(text, maxLevel))
7777
const active = getAndActive('.sidebar-nav', true, true)
78-
loadSidebar && subSidebar(active, subMaxLevel)
78+
subSidebar(loadSidebar ? active : '', subMaxLevel)
7979
// bind event
8080
this.activeLink = active
8181
scrollActiveSidebar()

0 commit comments

Comments
 (0)