2022-03-10 16:34:16 +01:00
|
|
|
/**
|
2023-05-25 09:18:55 +02:00
|
|
|
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
2022-03-10 16:34:16 +01:00
|
|
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* globals console, window, document */
|
|
|
|
|
|
|
|
import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
|
|
|
|
import Typing from '@ckeditor/ckeditor5-typing/src/typing';
|
|
|
|
import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
|
|
|
|
import Undo from '@ckeditor/ckeditor5-undo/src/undo';
|
|
|
|
import Enter from '@ckeditor/ckeditor5-enter/src/enter';
|
|
|
|
import Clipboard from '@ckeditor/ckeditor5-clipboard/src/clipboard';
|
|
|
|
import Link from '@ckeditor/ckeditor5-link/src/link';
|
|
|
|
import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
|
|
|
|
import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
|
|
|
|
import CKEditorInspector from '@ckeditor/ckeditor5-inspector';
|
|
|
|
|
|
|
|
import CodeBlock from '@ckeditor/ckeditor5-code-block/src/codeblock';
|
|
|
|
import Mermaid from '../src/mermaid';
|
|
|
|
|
|
|
|
ClassicEditor
|
|
|
|
.create( document.querySelector( '#editor' ), {
|
|
|
|
plugins: [
|
|
|
|
Typing,
|
|
|
|
Paragraph,
|
|
|
|
Undo,
|
|
|
|
Enter,
|
|
|
|
Clipboard,
|
|
|
|
Link,
|
|
|
|
Bold,
|
|
|
|
Italic,
|
|
|
|
CodeBlock,
|
|
|
|
Mermaid
|
|
|
|
],
|
|
|
|
toolbar: [ 'bold', 'italic', 'link', 'undo', 'redo', 'codeBlock', 'mermaid' ],
|
|
|
|
codeBlock: {
|
|
|
|
languages: [
|
|
|
|
{ language: 'plaintext', label: 'Plain text', class: '' },
|
|
|
|
{ language: 'javascript', label: 'JavaScript' },
|
|
|
|
{ language: 'python', label: 'Python' },
|
|
|
|
{ language: 'mermaid', label: 'Mermaid' }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
} )
|
|
|
|
.then( editor => {
|
|
|
|
window.editor = editor;
|
|
|
|
CKEditorInspector.attach( editor );
|
|
|
|
window.console.log( 'CKEditor 5 is ready.', editor );
|
|
|
|
} )
|
|
|
|
.catch( err => {
|
|
|
|
console.error( err.stack );
|
|
|
|
} );
|