[MFM] Better hashtag parsing: Ignore slash
This commit is contained in:
parent
4a41d2fddc
commit
31929dad61
2 changed files with 9 additions and 1 deletions
|
@ -142,7 +142,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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue