| 1234567891011121314151617181920212223242526 |
- /**
- * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- import { testDataProcessor as test } from 'tests/markdown-gfm/_utils/utils.js';
- describe( 'GFMDataProcessor', () => {
- describe( 'Strikethrough', () => {
- it( 'should process strikethrough text', () => {
- test(
- '~~deleted~~',
- '<p><del>deleted</del></p>'
- );
- } );
- it( 'should process strikethrough inside text', () => {
- test(
- 'This is ~~deleted content~~.',
- '<p>This is <del>deleted content</del>.</p>'
- );
- } );
- } );
- } );
|