forked from FoundKeyGang/FoundKey
Fix bug
This commit is contained in:
parent
413fbb3d0c
commit
0318f7344f
1 changed files with 2 additions and 2 deletions
|
@ -44,10 +44,10 @@ export default Vue.component('mk-note-html', {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (
|
while (ast[ast.length - 1] && (
|
||||||
ast[ast.length - 1].type == 'hashtag' ||
|
ast[ast.length - 1].type == 'hashtag' ||
|
||||||
(ast[ast.length - 1].type == 'text' && ast[ast.length - 1].content == ' ') ||
|
(ast[ast.length - 1].type == 'text' && ast[ast.length - 1].content == ' ') ||
|
||||||
(ast[ast.length - 1].type == 'text' && ast[ast.length - 1].content == '\n')) {
|
(ast[ast.length - 1].type == 'text' && ast[ast.length - 1].content == '\n'))) {
|
||||||
ast.pop();
|
ast.pop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue