fix(render): Disable markdown parsing when the file is an HTML (#403)

This commit is contained in:
Romain Lenzotti 2018-03-01 15:27:30 +01:00 committed by cinwell.li
parent b8a4e6ba1b
commit 278a75ebd5
2 changed files with 5 additions and 3 deletions

View File

@ -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()

View File

@ -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 {