mirror of
https://github.com/zadam/trilium.git
synced 2025-11-12 16:25:51 +01:00
chore(admonitions): start off with a fresh copy of blockquote plugin
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* @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 );
|
||||
} );
|
||||
Reference in New Issue
Block a user