| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /* globals console, window, document, setTimeout */
- import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
- import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
- import Markdown from '@ckeditor/ckeditor5-markdown-gfm/src/markdown';
- import Strikethrough from '@ckeditor/ckeditor5-basic-styles/src/strikethrough';
- import TodoList from '@ckeditor/ckeditor5-list/src/todolist';
- import TableProperties from '@ckeditor/ckeditor5-table/src/tableproperties';
- import TableCellProperties from '@ckeditor/ckeditor5-table/src/tablecellproperties';
- import CodeBlock from '@ckeditor/ckeditor5-code-block/src/codeblock';
- import Code from '@ckeditor/ckeditor5-basic-styles/src/code';
- ClassicEditor
- .create( document.querySelector( '#editor' ), {
- plugins: [ Markdown, ArticlePluginSet, Code, CodeBlock, Strikethrough, TodoList, TableProperties, TableCellProperties ],
- toolbar: [
- 'heading',
- '|',
- 'bold',
- 'italic',
- 'strikethrough',
- 'underline',
- 'link',
- '|',
- 'code',
- 'codeBlock',
- '|',
- 'todoList',
- 'bulletedList',
- 'numberedList',
- '|',
- 'outdent',
- 'indent',
- '|',
- 'blockQuote',
- 'insertTable',
- '|',
- 'undo',
- 'redo'
- ],
- image: {
- toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ]
- },
- table: {
- contentToolbar: [ 'tableColumn', 'tableRow', 'mergeTableCells', 'tableProperties', 'tableCellProperties' ],
- tableToolbar: [ 'bold', 'italic' ]
- }
- } )
- .then( editor => {
- window.editor = editor;
- const outputElement = document.querySelector( '#markdown-output' );
- editor.model.document.on( 'change', () => {
- 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 );
- } );
|