chore(admonitions): start off with a fresh copy of blockquote plugin

This commit is contained in:
Elian Doran
2025-03-13 18:27:05 +02:00
commit e24812f1a3
100 changed files with 4311 additions and 0 deletions

View File

@@ -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 );
} );