forked from FoundKeyGang/FoundKey
Fix bug
This commit is contained in:
parent
7228e6d111
commit
af1a533d13
1 changed files with 5 additions and 1 deletions
|
@ -90,7 +90,11 @@ export default Vue.component('mk-post-html', {
|
||||||
]);
|
]);
|
||||||
|
|
||||||
case 'inline-code':
|
case 'inline-code':
|
||||||
return createElement('code', token.html);
|
return createElement('code', {
|
||||||
|
domProps: {
|
||||||
|
innerHTML: token.html
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
case 'quote':
|
case 'quote':
|
||||||
const text2 = token.quote.replace(/(\r\n|\n|\r)/g, '\n');
|
const text2 = token.quote.replace(/(\r\n|\n|\r)/g, '\n');
|
||||||
|
|
Loading…
Reference in a new issue