Fix MFM parsing
This commit is contained in:
parent
83d168ece3
commit
4b145da046
2 changed files with 7 additions and 1 deletions
|
@ -152,6 +152,11 @@ describe('Text', () => {
|
|||
assert.deepEqual([
|
||||
{ type: 'quote', content: '> foo\n> bar\n> baz', quote: 'foo\nbar\nbaz' }
|
||||
], tokens4);
|
||||
|
||||
const tokens5 = analyze('"\nfoo\nbar\nbaz\n"');
|
||||
assert.deepEqual([
|
||||
{ type: 'quote', content: '"\nfoo\nbar\nbaz\n"', quote: 'foo\nbar\nbaz' }
|
||||
], tokens5);
|
||||
});
|
||||
|
||||
it('url', () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue