| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* globals console, window, document, setTimeout */
- import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
- import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
- import EasyImage from '@ckeditor/ckeditor5-easy-image/src/easyimage';
- import { TOKEN_URL } from '@ckeditor/ckeditor5-cloudservices/tests/_utils/cloudservices-config';
- import GFMDataProcessor from '@ckeditor/ckeditor5-markdown-gfm/src/gfmdataprocessor';
- function Markdown( editor ) {
- editor.data.processor = new GFMDataProcessor();
- }
- ClassicEditor
- .create( document.querySelector( '#snippet-markdown' ), {
- plugins: [ ArticlePluginSet, EasyImage, Markdown ],
- toolbar: [ 'headings', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
- image: {
- toolbar: [ 'imageStyleFull', 'imageStyleSide', '|', 'imageTextAlternative' ]
- },
- cloudServices: {
- tokenUrl: TOKEN_URL
- }
- } )
- .then( editor => {
- window.editor = editor;
- const outputElement = document.querySelector( '#snippet-markdown-output' );
- editor.model.document.on( 'changesDone', () => {
- outputElement.innerText = editor.getData();
- } );
- // Set the initial data with delay so hightlight.js doesn't catch them.
- setTimeout( () => {
- outputElement.innerText = editor.getData();
- }, 500 );
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|