[MFM] Improve hashtag detection

This commit is contained in:
syuilo 2018-11-29 20:12:37 +09:00
parent 0489291815
commit 48d0e2fa5f
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 9 additions and 1 deletions

View file

@ -186,6 +186,14 @@ describe('Text', () => {
], tokens);
});
it('with text (zenkaku)', () => {
const tokens = analyze('こんにちは #世界');
assert.deepEqual([
text('こんにちは '),
node('hashtag', { hashtag: '世界' })
], tokens);
});
it('ignore comma and period', () => {
const tokens = analyze('Foo #bar, baz #piyo.');
assert.deepEqual([