[MFM] Better hashtag parsing: Ignore trailing colon

This commit is contained in:
syuilo
2019-01-12 14:10:16 +09:00
parent 3d62bd8007
commit cd628eaf54
2 changed files with 9 additions and 1 deletions

View File

@ -205,7 +205,7 @@ const mfm = P.createLanguage({
hashtag: r =>
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);