/** * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md. */ import { testDataProcessor as test } from 'ckeditor5-markdown-gfm/tests/_utils/utils'; describe( 'GFMDataProcessor', () => { // Horizontal rules are are always rendered by GitHub as
---',
// Code block will be normalized to ``` representation.
'```\n' +
'---\n' +
'```'
);
} );
} );
describe( 'dashes with spaces', () => {
it( '#1', () => {
test( '- - -', '- - -',
// Code block will be normalized to ``` representation.
'```\n' +
'- - -\n' +
'```'
);
} );
} );
describe( 'asterisks', () => {
it( '#1', () => {
test( '***', '***',
// Code block will be normalized to ``` representation.
'```\n' +
'***\n' +
'```'
);
} );
} );
describe( 'asterisks with spaces', () => {
it( '#1', () => {
test( '* * *', '* * *',
// Code block will be normalized to ``` representation.
'```\n' +
'* * *\n' +
'```'
);
} );
} );
describe( 'underscores', () => {
it( '#1', () => {
test( '___', '___',
// Code block will be normalized to ``` representation.
'```\n' +
'___\n' +
'```'
);
} );
} );
describe( 'underscores with spaces', () => {
it( '#1', () => {
test( '_ _ _', '_ _ _',
// Code block will be normalized to ``` representation.
'```\n' +
'_ _ _\n' +
'```'
);
} );
} );
} );
} );