[MFM] Better hashtag parsing: Ignore slash
This commit is contained in:
		
							parent
							
								
									4a41d2fddc
								
							
						
					
					
						commit
						31929dad61
					
				
					 2 changed files with 9 additions and 1 deletions
				
			
		|  | @ -611,6 +611,14 @@ describe('MFM', () => { | |||
| 					text('(#123)'), | ||||
| 				]); | ||||
| 			}); | ||||
| 
 | ||||
| 			it('ignore slash', () => { | ||||
| 				const tokens = parse('#foo/bar'); | ||||
| 				assert.deepStrictEqual(tokens, [ | ||||
| 					leaf('hashtag', { hashtag: 'foo' }), | ||||
| 					text('/bar'), | ||||
| 				]); | ||||
| 			}); | ||||
| 		}); | ||||
| 
 | ||||
| 		describe('quote', () => { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue