| 12345678910111213141516171819202122 |
- /**
- * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /* global document, console, window */
- import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
- import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
- import CodeBlock from '@ckeditor/ckeditor5-code-block/src/codeblock';
- ClassicEditor
- .create( document.querySelector( '#editor' ), {
- plugins: [ CodeBlock, ArticlePluginSet ],
- toolbar: [ 'heading', '|', 'bold', 'italic', 'blockQuote', 'codeBlock', 'undo', 'redo', 'insertTable' ]
- } )
- .then( editor => {
- window.editor = editor;
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|