UNPKG

@ckeditor/ckeditor5-html-support

Version:

HTML Support feature for CKEditor 5.

28 lines (27 loc) 815 B
/** * @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 html-support/integrations/customelement */ import { Plugin } from 'ckeditor5/src/core'; import DataSchema from '../dataschema'; import DataFilter from '../datafilter'; /** * Provides the General HTML Support for custom elements (not registered in the {@link module:html-support/dataschema~DataSchema}). */ export default class CustomElementSupport extends Plugin { /** * @inheritDoc */ static get requires(): readonly [typeof DataFilter, typeof DataSchema]; /** * @inheritDoc */ static get pluginName(): "CustomElementSupport"; /** * @inheritDoc */ init(): void; }