mirror of
https://github.com/zhigang1992/docsify.git
synced 2026-04-23 21:00:06 +08:00
fix(render): Disable markdown parsing when the file is an HTML (#403)
This commit is contained in:
committed by
cinwell.li
parent
b8a4e6ba1b
commit
278a75ebd5
@@ -27,10 +27,12 @@ export function fetchMixin (proto) {
|
||||
// Abort last request
|
||||
last && last.abort && last.abort()
|
||||
|
||||
last = get(this.router.getFile(path) + qs, true, requestHeaders)
|
||||
const file = this.router.getFile(path)
|
||||
|
||||
last = get(file + qs, true, requestHeaders)
|
||||
|
||||
// Current page is html
|
||||
this.isHTML = /\.html$/g.test(path)
|
||||
this.isHTML = /\.html$/g.test(file)
|
||||
|
||||
const loadSideAndNav = () => {
|
||||
if (!loadSidebar) return cb()
|
||||
|
||||
@@ -135,7 +135,7 @@ export function renderMixin (proto) {
|
||||
callHook(this, 'afterEach', html, text => renderMain.call(this, text))
|
||||
}
|
||||
if (this.isHTML) {
|
||||
html = this.result
|
||||
html = this.result = text
|
||||
callback()
|
||||
next()
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user