Skip to content

Commit 1f4514d

Browse files
committed
fix: lint
1 parent eba1c98 commit 1f4514d

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

packages/docsify-server-renderer/index.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ export default class Renderer {
7474
}
7575

7676
_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
7880
}
7981

8082
_render (path, type) {
@@ -83,8 +85,8 @@ export default class Renderer {
8385

8486
switch (type) {
8587
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(
8890
this.compiler.subSidebar(html, subMaxLevel)
8991
)}</script>`
9092
break

src/core/render/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export function renderMixin (proto) {
7979
}
8080

8181
proto._renderSidebar = function (text) {
82-
const { maxLevel, subMaxLevel, autoHeader, loadSidebar } = this.config
82+
const { maxLevel, subMaxLevel, loadSidebar } = this.config
8383

8484
this._renderTo('.sidebar-nav', this.compiler.sidebar(text, maxLevel))
8585
const activeEl = getAndActive(this.router, '.sidebar-nav', true, true)
@@ -171,7 +171,7 @@ export function initRender (vm) {
171171
const id = config.el || '#app'
172172
const navEl = dom.find('nav') || dom.create('nav')
173173

174-
let el = dom.find(id)
174+
const el = dom.find(id)
175175
let html = ''
176176
let navAppendToTarget = dom.body
177177

0 commit comments

Comments
 (0)