| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /**
- * @module basic-styles/italic
- */
- import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
- import ItalicEditing from './italic/italicediting';
- import ItalicUI from './italic/italicui';
- /**
- * The italic feature.
- *
- * For a detailed overview check the {@glink features/basic-styles Basic styles feature documentation}
- * and the {@glink api/basic-styles package page}.
- *
- * This is a "glue" plugin which loads the {@link module:basic-styles/italic/italicediting~ItalicEditing} and
- * {@link module:basic-styles/italic/italicui~ItalicUI} plugins.
- *
- * @extends module:core/plugin~Plugin
- */
- export default class Italic extends Plugin {
- /**
- * @inheritDoc
- */
- static get requires() {
- return [ ItalicEditing, ItalicUI ];
- }
- /**
- * @inheritDoc
- */
- static get pluginName() {
- return 'Italic';
- }
- }
|