UNPKG

@ckeditor/ckeditor5-block-quote

Version:

Block quote feature for CKEditor 5.

31 lines (30 loc) 1 kB
/** * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** * @module block-quote/blockquote */ import { Plugin } from 'ckeditor5/src/core'; import BlockQuoteEditing from './blockquoteediting'; import BlockQuoteUI from './blockquoteui'; /** * The block quote plugin. * * For more information about this feature check the {@glink api/block-quote package page}. * * This is a "glue" plugin which loads the {@link module:block-quote/blockquoteediting~BlockQuoteEditing block quote editing feature} * and {@link module:block-quote/blockquoteui~BlockQuoteUI block quote UI feature}. * * @extends module:core/plugin~Plugin */ export default class BlockQuote extends Plugin { /** * @inheritDoc */ static get requires(): readonly [typeof BlockQuoteEditing, typeof BlockQuoteUI]; /** * @inheritDoc */ static get pluginName(): "BlockQuote"; }