File tree 2 files changed +7
-5
lines changed
packages/docsify-server-renderer
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,9 @@ export default class Renderer {
74
74
}
75
75
76
76
_renderHtml ( match , content ) {
77
- return this . html = this . html . replace ( new RegExp ( `<!--${ match } -->` , 'g' ) , content )
77
+ this . html = this . html . replace ( new RegExp ( `<!--${ match } -->` , 'g' ) , content )
78
+
79
+ return this . html
78
80
}
79
81
80
82
_render ( path , type ) {
@@ -83,8 +85,8 @@ export default class Renderer {
83
85
84
86
switch ( type ) {
85
87
case 'sidebar' :
86
- html = this . compiler . sidebar ( html , maxLevel )
87
- + `<script>window.__SUB_SIDEBAR__ = ${ JSON . stringify (
88
+ html = this . compiler . sidebar ( html , maxLevel ) +
89
+ `<script>window.__SUB_SIDEBAR__ = ${ JSON . stringify (
88
90
this . compiler . subSidebar ( html , subMaxLevel )
89
91
) } </script>`
90
92
break
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ export function renderMixin (proto) {
79
79
}
80
80
81
81
proto . _renderSidebar = function ( text ) {
82
- const { maxLevel, subMaxLevel, autoHeader , loadSidebar } = this . config
82
+ const { maxLevel, subMaxLevel, loadSidebar } = this . config
83
83
84
84
this . _renderTo ( '.sidebar-nav' , this . compiler . sidebar ( text , maxLevel ) )
85
85
const activeEl = getAndActive ( this . router , '.sidebar-nav' , true , true )
@@ -171,7 +171,7 @@ export function initRender (vm) {
171
171
const id = config . el || '#app'
172
172
const navEl = dom . find ( 'nav' ) || dom . create ( 'nav' )
173
173
174
- let el = dom . find ( id )
174
+ const el = dom . find ( id )
175
175
let html = ''
176
176
let navAppendToTarget = dom . body
177
177
You can’t perform that action at this time.
0 commit comments