| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- import { testDataProcessor } from '../_utils/utils';
- describe( 'GFMDataProcessor', () => {
- describe( 'paragraphs', () => {
- it( 'single line', () => {
- testDataProcessor(
- 'single line paragraph',
- '<p>single line paragraph</p>'
- );
- } );
- it( 'multiline', () => {
- testDataProcessor(
- 'first\n' +
- 'second\n' +
- 'third',
- // GitHub is rendering as:
- // <p>first<br>
- // second<br>
- // third</p>
- '<p>first<br></br>second<br></br>third</p>'
- );
- } );
- it( 'with header after #1', () => {
- testDataProcessor(
- 'single line\n' +
- '# header',
- // GitHub is rendering as:
- // <p>single line</p>
- //
- // <h1>header</h1>
- '<p>single line</p><h1>header</h1>',
- // To-markdown always put 2 empty lines after paragraph.
- 'single line\n\n' +
- '# header'
- );
- } );
- it( 'with header after #2', () => {
- testDataProcessor(
- 'single line\n' +
- 'header\n' +
- '===',
- // GitHub is rendering as:
- // <p>single line</p>
- //
- // <h1>header</h1>
- '<p>single line</p><h1>header</h1>',
- // To-markdown always put 2 empty lines after paragraph and normalize header to #.
- 'single line\n' +
- '\n' +
- '# header'
- );
- } );
- it( 'with blockquote after', () => {
- testDataProcessor(
- 'single line' +
- '\n> quote',
- // GitHub is rendereing as:
- // <p>single line</p>
- //
- // <blockquote>
- // <p>quote</p>
- // </blockquote>
- '<p>single line</p><blockquote><p>quote</p></blockquote>',
- // To-markdown always put 2 empty lines after paragraph.
- 'single line\n' +
- '\n' +
- '> quote'
- );
- } );
- it( 'with list after', () => {
- testDataProcessor(
- 'single line\n' +
- '* item',
- // GitHub is rendering as:
- // <p>single line</p>
- //
- // <ul>
- // <li>item</li>
- // </ul>
- '<p>single line</p><ul><li>item</li></ul>',
- // To-markdown always put 2 empty lines after paragraph.
- 'single line\n' +
- '\n' +
- '* item'
- );
- } );
- it( 'with div element after', () => {
- testDataProcessor(
- 'single line\n' +
- '<div>div element</div>',
- // GitHub is rendering as:
- // <p>single line</p>
- //
- // <div>div element</div>
- '<p>single line</p><div>div element</div>',
- // To-markdown always put 2 empty lines after paragraph.
- 'single line\n' +
- '\n' +
- '<div>div element</div>'
- );
- } );
- } );
- } );
|