mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-28 03:15:54 +08:00
37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
![]() |
/**
|
||
|
* @license Copyright (c) 2003-2024, 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/src/classiceditor.js';
|
||
|
import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset.js';
|
||
|
|
||
|
function DisallowNestingBlockQuotes( editor ) {
|
||
|
editor.model.schema.addChildCheck( ( context, childDefinition ) => {
|
||
|
if ( context.endsWith( 'blockQuote' ) && childDefinition.name == 'blockQuote' ) {
|
||
|
return false;
|
||
|
}
|
||
|
} );
|
||
|
}
|
||
|
|
||
|
ClassicEditor
|
||
|
.create( document.querySelector( '#editor' ), {
|
||
|
image: { toolbar: [ 'toggleImageCaption', 'imageTextAlternative' ] },
|
||
|
plugins: [ ArticlePluginSet, DisallowNestingBlockQuotes ],
|
||
|
toolbar: [
|
||
|
'heading', '|', 'insertTable', '|', 'bold', 'italic', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo'
|
||
|
],
|
||
|
table: {
|
||
|
contentToolbar: [ 'tableColumn', 'tableRow', 'mergeTableCells' ],
|
||
|
tableToolbar: [ 'bold', 'italic' ]
|
||
|
}
|
||
|
} )
|
||
|
.then( editor => {
|
||
|
window.editor = editor;
|
||
|
} )
|
||
|
.catch( err => {
|
||
|
console.error( err.stack );
|
||
|
} );
|