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 */
|
|
|
|
|
2024-05-20 15:14:56 +02:00
|
|
|
import { ClassicEditor } from '@ckeditor/ckeditor5-editor-classic';
|
|
|
|
import { Typing } from '@ckeditor/ckeditor5-typing';
|
|
|
|
import { Paragraph } from '@ckeditor/ckeditor5-paragraph';
|
|
|
|
import { Undo } from '@ckeditor/ckeditor5-undo';
|
|
|
|
import { Enter } from '@ckeditor/ckeditor5-enter';
|
|
|
|
import { Clipboard } from '@ckeditor/ckeditor5-clipboard';
|
|
|
|
import { Link } from '@ckeditor/ckeditor5-link';
|
|
|
|
import { Bold, Italic } from '@ckeditor/ckeditor5-basic-styles';
|
|
|
|
import { CodeBlock } from '@ckeditor/ckeditor5-code-block';
|
|
|
|
|
2022-03-10 16:34:16 +01:00
|
|
|
import CKEditorInspector from '@ckeditor/ckeditor5-inspector';
|
|
|
|
|
2024-05-20 14:27:21 +02:00
|
|
|
import Mermaid from '../src/mermaid.js';
|
2022-03-10 16:34:16 +01:00
|
|
|
|
|
|
|
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 );
|
|
|
|
} );
|