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,20 @@
/**
* @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-block-quote' ) )
.then( editor => {
window.editor = editor;
window.attachTourBalloon( {
target: window.findToolbarItem( editor.ui.view.toolbar, item => item.label && item.label === 'Block quote' ),
text: 'Click to insert a block quote.',
editor
} );
} )
.catch( err => {
console.error( err.stack );
} );