[MFM] Improve hashtag parsing

This commit is contained in:
syuilo 2019-03-05 22:18:29 +09:00
parent 2c83a05e80
commit 2782e7d26f
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 9 additions and 1 deletions

View file

@ -550,6 +550,14 @@ describe('MFM', () => {
]);
});
it('ignore square brackets', () => {
const tokens = parse('#foo]');
assert.deepStrictEqual(tokens, [
leaf('hashtag', { hashtag: 'foo' }),
text(']'),
]);
});
it('allow including number', () => {
const tokens = parse('#foo123');
assert.deepStrictEqual(tokens, [