fix(render): Disable markdown parsing when the file is an HTML (#403)
This commit is contained in:
parent
b8a4e6ba1b
commit
278a75ebd5
2 changed files with 5 additions and 3 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue