diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-01-17 09:24:20 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-01-17 09:24:20 +0900 |
| commit | 9740db868546cea4e86fd81153b5b49e1225e876 (patch) | |
| tree | b10569921fe73f39a3d73bcc72ee325fa4d224b6 /test | |
| parent | :art: (diff) | |
| download | sharkey-9740db868546cea4e86fd81153b5b49e1225e876.tar.gz sharkey-9740db868546cea4e86fd81153b5b49e1225e876.tar.bz2 sharkey-9740db868546cea4e86fd81153b5b49e1225e876.zip | |
[MFM] Better hashtag parsing: Ignore double quotation
Resolve #3886
Diffstat (limited to 'test')
| -rw-r--r-- | test/mfm.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/mfm.ts b/test/mfm.ts index 7e2de47339..60fd4d62f8 100644 --- a/test/mfm.ts +++ b/test/mfm.ts @@ -365,6 +365,14 @@ describe('MFM', () => { ]); }); + it('ignore double quote', () => { + const tokens = analyze('#foo"'); + assert.deepStrictEqual(tokens, [ + leaf('hashtag', { hashtag: 'foo' }), + text('"'), + ]); + }); + it('allow including number', () => { const tokens = analyze('#foo123'); assert.deepStrictEqual(tokens, [ |