mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-11 02:42:27 +08:00
16 lines
423 B
JavaScript
16 lines
423 B
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 ClassicEditor, window, document, console */
|
|
|
|
ClassicEditor
|
|
.create( document.querySelector( '#snippet-nested-block-quote' ) )
|
|
.then( editor => {
|
|
window.editor2 = editor;
|
|
} )
|
|
.catch( err => {
|
|
console.error( err.stack );
|
|
} );
|