@@ -9,7 +9,7 @@
import marked from './lib/marked/marked';
import toMarkdown from './lib/to-markdown/to-markdown';
-import HtmlDataProcessor from 'ckeditor5-engine/src/dataprocessor/htmldataprocessor';
+import HtmlDataProcessor from '@ckeditor/ckeditor5-engine/src/dataprocessor/htmldataprocessor';
import GFMRenderer from './lib/marked/renderer';
import converters from './lib/to-markdown/converters';
@@ -1,5 +1,5 @@
-import MarkdownDataProcessor from 'ckeditor5-markdown-gfm/src/gfmdataprocessor';
-import { stringify } from 'ckeditor5-engine/src/dev-utils/view.js';
+import MarkdownDataProcessor from '../../src/gfmdataprocessor';
+import { stringify } from '@ckeditor/ckeditor5-engine/src/dev-utils/view.js';
/**
* Tests MarkdownDataProcessor.
@@ -3,7 +3,7 @@
* For licensing, see LICENSE.md.
*/
-import { testDataProcessor as test } from 'ckeditor5-markdown-gfm/tests/_utils/utils';
+import { testDataProcessor as test } from '../../tests/_utils/utils';
describe( 'GFMDataProcessor', () => {
describe( 'blockquotes', () => {
describe( 'code', () => {
@@ -3,8 +3,8 @@
-import { stringify } from 'ckeditor5-engine/src/dev-utils/view';
+import { stringify } from '@ckeditor/ckeditor5-engine/src/dev-utils/view';
const testCases = {
'backslash': { test: '\\\\', result: '\\' },
describe( 'headers', () => {
// Horizontal rules are are always rendered by GitHub as <hr> and normalized when converting
describe( 'images', () => {
describe( 'links', () => {
describe( 'lists', () => {
@@ -5,8 +5,8 @@
/* globals document */
-import { stringify, parse } from 'ckeditor5-engine/src/dev-utils/view';
+import MarkdownDataProcessor from '../../../src/gfmdataprocessor';
+import { stringify, parse } from '@ckeditor/ckeditor5-engine/src/dev-utils/view';
const markdownTextArea = document.getElementById( 'markdown' );
const viewTextArea = document.getElementById( 'view' );
describe( 'paragraphs', () => {
describe( 'Strikethrough', () => {
describe( 'strong and emphasis', () => {
describe( 'tables', () => {
describe( 'tabs', () => {