mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00

git-subtree-dir: _regroup/ckeditor5-mermaid git-subtree-mainline: 90c0f417131d254e86a4a4ab391122cad0930db7 git-subtree-split: c15257da7e57b6303fda9744ee4153d1c5311d6f
55 lines
1.5 KiB
JavaScript
55 lines
1.5 KiB
JavaScript
/**
|
|
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
*/
|
|
|
|
/* globals console, window, document */
|
|
|
|
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';
|
|
|
|
import CKEditorInspector from '@ckeditor/ckeditor5-inspector';
|
|
|
|
import Mermaid from '../src/mermaid.js';
|
|
|
|
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 );
|
|
} );
|