forked from FoundKeyGang/FoundKey
Fix bugs
This commit is contained in:
parent
460147fea2
commit
d6e5dc2167
1 changed files with 5 additions and 2 deletions
|
@ -44,7 +44,10 @@ export default Vue.component('mk-note-html', {
|
|||
return;
|
||||
}
|
||||
|
||||
while (ast[ast.length - 1].type == 'hashtag') {
|
||||
while (
|
||||
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 == '\n')) {
|
||||
ast.pop();
|
||||
}
|
||||
|
||||
|
@ -100,7 +103,7 @@ export default Vue.component('mk-note-html', {
|
|||
case 'hashtag':
|
||||
return createElement('a', {
|
||||
attrs: {
|
||||
href: `${url}/search?q=${token.content}`,
|
||||
href: `${url}/tags/${token.content}`,
|
||||
target: '_blank'
|
||||
}
|
||||
}, token.content);
|
||||
|
|
Loading…
Reference in a new issue