From 9740db868546cea4e86fd81153b5b49e1225e876 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 17 Jan 2019 09:24:20 +0900 Subject: [MFM] Better hashtag parsing: Ignore double quotation Resolve #3886 --- test/mfm.ts | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test') 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, [ -- cgit v1.2.3-freya