mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 19:49:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. 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/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 );
 | |
| 	} );
 | 
