Developer Tools
- Categories: Development
- Author: CKSource
- License: GPL, LGPL, MPL, CKSource CDL
This plugin displays tooltips with information about editor dialog windows, such as:
- dialog window name,
- dialog window tab name,
- dialog window element ID,
- dialog window element type with a link to an appropriate entry in the CKEditor API.
It is useful in the development phase, when customizing editor dialog windows or creating new plugins, and should not be used in production environments. It works with all CKEditor dialog windows, including the ones that were created by custom plugins.
This is an official plugin provided and supported by CKEditor developers.
You can submit bug reports directly to its GitHub issues tracker and discuss any integration issues on StackOverflow.
Releases
Plugin versions | CKEditor versions | |||
---|---|---|---|---|
4.25 | 4.24 | 4.23 | ||
Version: 4.24.0-lts |
||||
First major release of CKEditor 4.24.0-lts |
||||
Version: 4.23.0-lts |
||||
First major release of CKEditor 4.23.0-lts |
Dialog
This plugin provides the dialog API for other plugins to build an editor dialog from a definition object.
This is an official plugin provided and supported by CKEditor developers.
You can submit bug reports directly to its GitHub issues tracker and discuss any integration issues on StackOverflow.
Releases
Plugin versions | CKEditor versions | |||
---|---|---|---|---|
4.25 | 4.24 | 4.23 | ||
Version: 4.24.0-lts |
||||
First major release of CKEditor 4.24.0-lts |
||||
Version: 4.23.0-lts |
||||
First major release of CKEditor 4.23.0-lts |
Advanced Tab for Dialogs
This plugin provides the Advanced dialog window tab to extend some editor dialog windows. Thanks to this other plugins do not need to implement the same features for their dialog windows.
Depending on the features provided by particular plugins, the Advanced tab can include the following fields:
- Id
- Name
- Background Color
- Language direction
- Language code
- Access Key
- Tab Index
- Long Description URL
- Stylesheet Classes
- Advisory Title
- Advisory Content Type
- Linked Resource Charset
- Style
- Relationship
Among the plugins that implement the Advanced tab are:
This is an official plugin provided and supported by CKEditor developers.
You can submit bug reports directly to its GitHub issues tracker and discuss any integration issues on StackOverflow.
Releases
Plugin versions | CKEditor versions | |||
---|---|---|---|---|
4.25 | 4.24 | 4.23 | ||
Version: 4.24.0-lts |
||||
First major release of CKEditor 4.24.0-lts |
||||
Version: 4.23.0-lts |
||||
First major release of CKEditor 4.23.0-lts |
Dialog User Interface
This plugin defines various dialog field types to be used in the dialog, which is mostly used in accompany with the dialog plugin.
This is an official plugin provided and supported by CKEditor developers.
You can submit bug reports directly to its GitHub issues tracker and discuss any integration issues on StackOverflow.
Releases
Plugin versions | CKEditor versions | |||
---|---|---|---|---|
4.25 | 4.24 | 4.23 | ||
Version: 4.24.0-lts |
||||
First major release of CKEditor 4.24.0-lts |
||||
Version: 4.23.0-lts |
||||
First major release of CKEditor 4.23.0-lts |
Div Container Manager
This plugin adds a command that allows for grouping of content blocks under a <div> element as a container, with styles and attributes optionally specified in a dedicated dialog.
It adds the Create Div Container toolbar button and dialog window as well as context menu entries that let you manage the created <div> container.
It is possible to configure the created <div> element to wrap an entire HTML table instead of individual cells with the config.div_wrapTable option.
This is an official plugin provided and supported by CKEditor developers.
You can submit bug reports directly to its GitHub issues tracker and discuss any integration issues on StackOverflow.
Releases
Plugin versions | CKEditor versions | |||
---|---|---|---|---|
4.25 | 4.24 | 4.23 | ||
Version: 4.24.0-lts |
||||
First major release of CKEditor 4.24.0-lts |
||||
Version: 4.23.0-lts |
||||
First major release of CKEditor 4.23.0-lts |
Div Editing Area
This plugin uses a <div> element (instead of the traditional <iframe> element) as the editable area in the themedui creator. Much similar to inline editing, it benefits from allowing the editor content to inherit from host page styles.
This is an official plugin provided and supported by CKEditor developers.
You can submit bug reports directly to its GitHub issues tracker and discuss any integration issues on StackOverflow.
Releases
Plugin versions | CKEditor versions | |||
---|---|---|---|---|
4.25 | 4.24 | 4.23 | ||
Version: 4.24.0-lts |
||||
First major release of CKEditor 4.24.0-lts |
||||
Version: 4.23.0-lts |
||||
First major release of CKEditor 4.23.0-lts |
Document Properties
- Categories: Preferences
- Author: CKSource
- License: GPL, LGPL, MPL, CKSource CDL
This plugin can be used in full page mode to manipulate the metadata of an HTML document, including:
- Page title, language direction and code, charset encoding and DOCTYPE.
- Text color, background color or image, page margins.
- Meta tags with document keywords, description, author and copyright.
Note: Both full page editing and the Documentation Properties plugin are only available for classic editor with fixed user interface.
This is an official plugin provided and supported by CKEditor developers.
You can submit bug reports directly to its GitHub issues tracker and discuss any integration issues on StackOverflow.
Releases
Plugin versions | CKEditor versions | |||
---|---|---|---|---|
4.25 | 4.24 | 4.23 | ||
Version: 4.24.0-lts |
||||
First major release of CKEditor 4.24.0-lts |
||||
Version: 4.23.0-lts |
||||
First major release of CKEditor 4.23.0-lts |
Elements Path
This plugin displays a list of HTML element names in the current cursor position. By default the list appears at the bottom of the editor interface and can give the users contextual information about the content that they are creating.
Clicking an element name on the Elements Path selects the element in the editor content.
Note: Elements Path is not available for Floating UI which is the default user interface of inline editor.
This is an official plugin provided and supported by CKEditor developers.
You can submit bug reports directly to its GitHub issues tracker and discuss any integration issues on StackOverflow.
Releases
Plugin versions | CKEditor versions | |||
---|---|---|---|---|
4.25 | 4.24 | 4.23 | ||
Version: 4.24.0-lts |
||||
First major release of CKEditor 4.24.0-lts |
||||
Version: 4.23.0-lts |
||||
First major release of CKEditor 4.23.0-lts |
Enter Key
This plugin defines the Enter key (line breaking) behavior in all contexts. Depending on the configuration, the editor will present the line break in one of the following ways:
- paragraph (
<p>
) block -
<div>
block -
<br>
element.
Shift+Enter key behavior can also be defined in a similiar way to accompany the Enter key configuration.
Note: Changing the Enter Mode setting to BR
or DIV
is not recommended. The default CKEDITOR.ENTER_P
mode is fully supported by all editor features and plugins and is also the most correct one in terms of best practices for creating web content.
If you want to change it to control paragraph spacing, you should use stylesheets instead.
This is an official plugin provided and supported by CKEditor developers.
You can submit bug reports directly to its GitHub issues tracker and discuss any integration issues on StackOverflow.
Releases
Plugin versions | CKEditor versions | |||
---|---|---|---|---|
4.25 | 4.24 | 4.23 | ||
Version: 4.24.0-lts |
||||
First major release of CKEditor 4.24.0-lts |
||||
Version: 4.23.0-lts |
||||
First major release of CKEditor 4.23.0-lts |
Escape HTML Entities
This plugin escapes HTML entities that appear in the editor output based on configuration. The supported entities are grouped into the following categories:
This is an official plugin provided and supported by CKEditor developers.
You can submit bug reports directly to its GitHub issues tracker and discuss any integration issues on StackOverflow.
Releases
Plugin versions | CKEditor versions | |||
---|---|---|---|---|
4.25 | 4.24 | 4.23 | ||
Version: 4.24.0-lts |
||||
First major release of CKEditor 4.24.0-lts |
||||
Version: 4.23.0-lts |
||||
First major release of CKEditor 4.23.0-lts |