From cb6a4037f2f6c084ccccd2acb1826d2b2e7113b4 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 17 Jan 2019 09:33:08 +0900 Subject: [MFM] Better hashtag parsing: Ignore single quotation --- test/mfm.ts | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test') diff --git a/test/mfm.ts b/test/mfm.ts index 60fd4d62f8..4e922cab29 100644 --- a/test/mfm.ts +++ b/test/mfm.ts @@ -365,6 +365,14 @@ describe('MFM', () => { ]); }); + it('ignore single quote', () => { + const tokens = analyze('#foo\''); + assert.deepStrictEqual(tokens, [ + leaf('hashtag', { hashtag: 'foo' }), + text('\''), + ]); + }); + it('ignore double quote', () => { const tokens = analyze('#foo"'); assert.deepStrictEqual(tokens, [ -- cgit v1.2.3-freya