[MFM] Better hashtag parsing

This commit is contained in:
syuilo
2019-04-18 00:40:56 +09:00
parent e19ae644f1
commit 95733c9490
2 changed files with 9 additions and 1 deletions

View File

@ -141,7 +141,7 @@ export const mfmLanguage = P.createLanguage({
},
hashtag: () => P((input, i) => {
const text = input.substr(i);
const match = text.match(/^#([^\s\.,!\?'"#:\/\[\]]+)/i);
const match = text.match(/^#([^\s\.,!\?'"#:\/\[\]【】]+)/i);
if (!match) return P.makeFailure(i, 'not a hashtag');
let hashtag = match[1];
hashtag = removeOrphanedBrackets(hashtag);