Contribute to this guide

guidePlugins and HTML output

Listed below are all official CKEditor 5 packages as well as some partner packages together with their possible HTML output. If a plugin generates a different HTML output depending on its configuration, it is described in the “HTML output” column.

The classes, styles or attributes applied to an HTML element are all possible results. It does not mean they all will always be used.

$block is a generic structural element that may contain textual content. Features like headings or paragraph implement it to inherit common behaviors. You can read more about it in the Schema guide.

If a given plugin does not generate any output, the “HTML output” is described as “None.” Wildcard character * means any value is possible.

The data used to generate the following tables comes from the package metadata. You can read more about it in the package metadata guide.

ckeditor5-adapter-ckfinder

Source file: @ckeditor/ckeditor5-adapter-ckfinder/ckeditor5-metadata.json

PluginHTML output

CKFinder upload adapter

Book Feature guide

Cog API documentation

None.

ckeditor5-ai

Source file: @ckeditor/ckeditor5-ai/ckeditor5-metadata.json

PluginHTML output

AI Assistant

Book Feature guide

Cog API documentation

None.

ckeditor5-alignment

Source file: @ckeditor/ckeditor5-alignment/ckeditor5-metadata.json

PluginHTML output

Alignment

Book Feature guide

Cog API documentation

<$block style="text-align:*">

By default, the alignment feature uses the text-align inline style.

<$block class="*">

If config.alignment.options is set, these classes are used for alignment instead of inline styles.

ckeditor5-autoformat

Source file: @ckeditor/ckeditor5-autoformat/ckeditor5-metadata.json

PluginHTML output

Autoformat

Book Feature guide

Cog API documentation

None.

ckeditor5-autosave

Source file: @ckeditor/ckeditor5-autosave/ckeditor5-metadata.json

PluginHTML output

Autosave

Book Feature guide

Cog API documentation

None.

ckeditor5-basic-styles

Source file: @ckeditor/ckeditor5-basic-styles/ckeditor5-metadata.json

PluginHTML output

Bold

Book Feature guide

Cog API documentation

<strong>

Code

Book Feature guide

Cog API documentation

<code>

Italic

Book Feature guide

Cog API documentation

<i>

Strikethrough

Book Feature guide

Cog API documentation

<s>

Subscript

Book Feature guide

Cog API documentation

<sub>

Superscript

Book Feature guide

Cog API documentation

<sup>

Underline

Book Feature guide

Cog API documentation

<u>

ckeditor5-block-quote

Source file: @ckeditor/ckeditor5-block-quote/ckeditor5-metadata.json

PluginHTML output

Block quote

Book Feature guide

Cog API documentation

<blockquote>

ckeditor5-case-change

Source file: @ckeditor/ckeditor5-case-change/ckeditor5-metadata.json

PluginHTML output

Case change

Book Feature guide

Cog API documentation

None.

ckeditor5-ckbox

Source file: @ckeditor/ckeditor5-ckbox/ckeditor5-metadata.json

PluginHTML output

CKBox

Book Feature guide

Cog API documentation

<a data-ckbox-resource-id="*"><figure data-ckbox-resource-id="*"><img data-ckbox-resource-id="*">

If config.ckbox.ignoreDataId is set to false (off), the asset ID as the data-ckbox-resource-id attribute is added on the inserted elements (by default).

CKBox Image Edit

Book Feature guide

Cog API documentation

None.

ckeditor5-ckfinder

Source file: @ckeditor/ckeditor5-ckfinder/ckeditor5-metadata.json

PluginHTML output

CKFinder

Book Feature guide

Cog API documentation

None.

ckeditor5-cloud-services

Source file: @ckeditor/ckeditor5-cloud-services/ckeditor5-metadata.json

PluginHTML output

Cloud Services

Book Feature guide

Cog API documentation

None.

ckeditor5-code-block

Source file: @ckeditor/ckeditor5-code-block/ckeditor5-metadata.json

PluginHTML output

Code blocks

Book Feature guide

Cog API documentation

<pre>
<code class="language-*">

By default, the language of the code block is represented as a CSS class prefixed by language-

<code class="*">

The CSS class name can be customized via the config.codeBlock.languages array.

ckeditor5-comments

Source file: @ckeditor/ckeditor5-comments/ckeditor5-metadata.json

PluginHTML output

Comments

Book Feature guide

Cog API documentation

<comment
id="*"
type="*"
>
<comment-end name="*"><comment-start name="*">
<*
data-comment-end-after="*"
data-comment-start-before="*"
>

The plugin adds the data-comment-end-after and data-comment-start-before attributes to other elements on which the comment starts or ends.

ckeditor5-document-outline

Source file: @ckeditor/ckeditor5-document-outline/ckeditor5-metadata.json

PluginHTML output

Document outline

Book Feature guide

Cog API documentation

None.

Table of contents

Book Feature guide

Cog API documentation

<div class="table-of-contents table-of-contents_empty">
<ol><li><a>
<p class="table-of-contents__placeholder">

ckeditor5-easy-image

Source file: @ckeditor/ckeditor5-easy-image/ckeditor5-metadata.json

PluginHTML output

Easy Image

Book Feature guide

Cog API documentation

None.

ckeditor5-essentials

Source file: @ckeditor/ckeditor5-essentials/ckeditor5-metadata.json

PluginHTML output

Essentials

Cog API documentation

<br>

ckeditor5-export-pdf

Source file: @ckeditor/ckeditor5-export-pdf/ckeditor5-metadata.json

PluginHTML output

Export to PDF

Book Feature guide

Cog API documentation

None.

ckeditor5-export-word

Source file: @ckeditor/ckeditor5-export-word/ckeditor5-metadata.json

PluginHTML output

Export to Word

Book Feature guide

Cog API documentation

None.

ckeditor5-find-and-replace

Source file: @ckeditor/ckeditor5-find-and-replace/ckeditor5-metadata.json

PluginHTML output

Find and replace

Book Feature guide

Cog API documentation

None.

ckeditor5-font

Source file: @ckeditor/ckeditor5-font/ckeditor5-metadata.json

PluginHTML output

Font background color

Book Feature guide

Cog API documentation

<span style="background-color:*">

Font color

Book Feature guide

Cog API documentation

<span style="color:*">

Font size

Book Feature guide

Cog API documentation

<span class="text-tiny text-small text-big text-huge">

If the config.fontSize.options option is not set or it contains predefined named presets, the feature uses class names.

<span style="font-size:*">

If the config.fontSize.options option contains numerical values, the font size feature uses the font-size inline style.

<*
class="*"
style="*:*"
>

The plugin can be configured to return any element with any classes and any inline styles.

Font family

Book Feature guide

Cog API documentation

<span style="font-family:*">

By default, the font family feature uses the font-family inline style.

<*
class="*"
style="*:*"
>

The plugin can be configured to return any element with any classes and any inline styles.

ckeditor5-format-painter

Source file: @ckeditor/ckeditor5-format-painter/ckeditor5-metadata.json

PluginHTML output

Format painter

Book Feature guide

Cog API documentation

None.

ckeditor5-heading

Source file: @ckeditor/ckeditor5-heading/ckeditor5-metadata.json

PluginHTML output

Title

Book Feature guide

Cog API documentation

<h1>

Heading

Book Feature guide

Cog API documentation

<h2><h3><h4>

HTML element may contain classes, styles or attributes, that are created by other plugins, which alter the <$block> element.

This element inherits all attributes, classes and styles that are allowed on the <$block> element by other features.

<*>

The plugin can be configured to return any element name as a heading.

ckeditor5-highlight

Source file: @ckeditor/ckeditor5-highlight/ckeditor5-metadata.json

PluginHTML output

Highlight

Book Feature guide

Cog API documentation

<mark class="marker-yellow marker-green marker-pink marker-blue pen-red pen-green">

By default, this plugin has 4 markers and 2 pens preconfigured.

<mark class="*">

The plugin can be configured to set any classes on the <mark> element.

ckeditor5-horizontal-line

Source file: @ckeditor/ckeditor5-horizontal-line/ckeditor5-metadata.json

PluginHTML output

Horizontal line

Book Feature guide

Cog API documentation

<hr>

ckeditor5-html-embed

Source file: @ckeditor/ckeditor5-html-embed/ckeditor5-metadata.json

PluginHTML output

HTML embed

Book Feature guide

Cog API documentation

<div class="raw-html-embed">
<*
class="*"
style="*:*"
>

The plugin can output any arbitrary HTML provided by the user. That HTML is always wrapped with a <div class="raw-html-embed"> element.

ckeditor5-html-support

Source file: @ckeditor/ckeditor5-html-support/ckeditor5-metadata.json

PluginHTML output

General HTML Support

Book Feature guide

Cog API documentation

<*
class="*"
style="*:*"
*="*"
>

The plugin can output any arbitrary HTML configured by config.htmlSupport option.

Data filter

Cog API documentation

<*
class="*"
style="*:*"
*="*"
>

The plugin can output any arbitrary HTML depending on its configuration.

Data schema

Cog API documentation

None.

HTML comment

Book Feature guide

Cog API documentation

The plugin can output HTML comments that were added from the editor inital data or by the plugin API.

Full page HTML

Book Feature guide

Cog API documentation

None.

ckeditor5-image

Source file: @ckeditor/ckeditor5-image/ckeditor5-metadata.json

PluginHTML output

Auto image

Book Feature guide

Cog API documentation

None.

Block image

Book Feature guide

Cog API documentation

<figure class="image">
<img
alt="*"
height="*"
sizes="*"
src="*"
srcset="*"
width="*"
>

Inline image

Book Feature guide

Cog API documentation

<img
alt="*"
height="*"
sizes="*"
src="*"
srcset="*"
width="*"
>

Image

Book Feature guide

Cog API documentation

None.

Image caption

Book Feature guide

Cog API documentation

<figcaption>

Image resize

Book Feature guide

Cog API documentation

<figure
class="image_resized"
style="height:*; width:*"
>
<img
class="image_resized"
style="aspect-ratio:*; height:*; width:*"
>

Image style

Book Feature guide

Cog API documentation

<figure class="image-style-side image-style-align-left image-style-align-right image-style-block-align-center image-style-block-align-left image-style-block-align-right">
<figure class="*">

The plugin can be configured to set any class names on the <figure> element.

Image toolbar

Book Feature guide

Cog API documentation

None.

Image upload

Book Feature guide

Cog API documentation

None.

Image insert

Book Feature guide

Cog API documentation

None.

ckeditor5-import-word

Source file: @ckeditor/ckeditor5-import-word/ckeditor5-metadata.json

PluginHTML output

Import from Word

Book Feature guide

Cog API documentation

None.

ckeditor5-indent

Source file: @ckeditor/ckeditor5-indent/ckeditor5-metadata.json

PluginHTML output

Indent

Book Feature guide

Cog API documentation

None.

Indent block

Book Feature guide

Cog API documentation

<$block style="margin-left:*; margin-right:*">

By default, the plugin uses inline styles for indentation.

<$block class="*">

If classes are defined in config.indentBlock.classes, they are used instead of inline styles.

ckeditor5-language

Source file: @ckeditor/ckeditor5-language/ckeditor5-metadata.json

PluginHTML output

Text part language

Book Feature guide

Cog API documentation

<span
dir="*"
lang="*"
>

Source file: @ckeditor/ckeditor5-link/ckeditor5-metadata.json

PluginHTML output

Autolink

Book Feature guide

Cog API documentation

None.

Link

Book Feature guide

Cog API documentation

<a href="*">
<a
rel="*"
target="*"
>

If config.link.addTargetToExternalLinks is enabled, then the external links are decorated with rel and target attributes.

<a
class="*"
style="*:*"
*="*"
>

The plugin can be configured to set any classes, styles or attributes on the <a> tag via custom config.link.decorators configuration.

Link image

Book Feature guide

Cog API documentation

<a href="*">

ckeditor5-list

Source file: @ckeditor/ckeditor5-list/ckeditor5-metadata.json

PluginHTML output

Legacy list

Book Feature guide

Cog API documentation

<ol><ul>
<li>

HTML element may contain classes, styles or attributes, that are created by other plugins, which alter the <$block> element.

Legacy to-do list

Book Feature guide

Cog API documentation

<ul class="todo-list">
<li>
<label class="todo-list__label">
<span class="todo-list__label__description">
<input
checked="*"
disabled="*"
type="*"
>

Legacy list properties

Book Feature guide

Cog API documentation

<ol
style="list-style-type:*"
start="*"
reversed="*"
>
<ul
style="list-style-type:*"
start="*"
reversed="*"
>

List

Book Feature guide

Cog API documentation

<ol><ul>
<li>

To-do list

Book Feature guide

Cog API documentation

<ul class="todo-list">
<li>
<label class="todo-list__label todo-list__label_without-description">
<span class="todo-list__label__description">
<input
checked="*"
disabled="*"
type="*"
>

List properties

Book Feature guide

Cog API documentation

<ol
style="list-style-type:*"
start="*"
reversed="*"
type="*"
>
<ul
style="list-style-type:*"
start="*"
reversed="*"
type="*"
>

ckeditor5-markdown-gfm

Source file: @ckeditor/ckeditor5-markdown-gfm/ckeditor5-metadata.json

PluginHTML output

Markdown

Book Feature guide

Cog API documentation

None.

ckeditor5-media-embed

Source file: @ckeditor/ckeditor5-media-embed/ckeditor5-metadata.json

PluginHTML output

Media embed

Book Feature guide

Cog API documentation

<figure class="media">
<oembed url="*">

If config.mediaEmbed.previewsInData is turned off, the media preview is not displayed and the media is represented using only the <oembed> tag (by default).

<div data-oembed-url="*">

If config.mediaEmbed.previewsInData is turned on, the media preview is displayed in the view.

<* url="*">

If config.mediaEmbed.previewsInData is turned off, the plugin can be configured to return any element name specified by config.mediaEmbed.elementName.

<div style="height:*; padding-bottom:*; position:*">

If config.mediaEmbed.previewsInData is turned on, the media preview is displayed in the view.

<iframe
style="height:*; left:*; position:*; top:*; width:*"
*allow*="*"
frameborder="*"
src="*"
>

If config.mediaEmbed.previewsInData is turned on, the media preview is displayed in the view.

<*
class="*"
style="*:*"
*="*"
>

The plugin can be configured to return any element with any class, inline style, and attribute, via config.mediaEmbed.providers for previewable media.

Media embed toolbar

Book Feature guide

Cog API documentation

None.

ckeditor5-mention

Source file: @ckeditor/ckeditor5-mention/ckeditor5-metadata.json

PluginHTML output

Mention

Book Feature guide

Cog API documentation

<span
class="mention"
data-mention="*"
>

ckeditor5-minimap

Source file: @ckeditor/ckeditor5-minimap/ckeditor5-metadata.json

PluginHTML output

Content minimap

Book Feature guide

Cog API documentation

None.

ckeditor5-page-break

Source file: @ckeditor/ckeditor5-page-break/ckeditor5-metadata.json

PluginHTML output

Page break

Book Feature guide

Cog API documentation

<div
class="page-break"
style="page-break-after:*"
>
<span style="display:*">

ckeditor5-pagination

Source file: @ckeditor/ckeditor5-pagination/ckeditor5-metadata.json

PluginHTML output

Pagination

Book Feature guide

Cog API documentation

<*
style="page-break-before:*"
data-pagination-page="*"
>

When using editor.getData( { pagination: true } ). Otherwise, no additional elements are generated.

ckeditor5-paragraph

Source file: @ckeditor/ckeditor5-paragraph/ckeditor5-metadata.json

PluginHTML output

Paragraph

Cog API documentation

<p>

HTML element may contain classes, styles or attributes, that are created by other plugins, which alter the <$block> element.

This element inherits all attributes, classes and styles that are allowed on the <$block> element by other features.

ckeditor5-paste-from-office

Source file: @ckeditor/ckeditor5-paste-from-office/ckeditor5-metadata.json

PluginHTML output

Paste from Office

Book Feature guide

Cog API documentation

None.

ckeditor5-paste-from-office-enhanced

Source file: @ckeditor/ckeditor5-paste-from-office-enhanced/ckeditor5-metadata.json

PluginHTML output

Paste from Office Enhanced

Book Feature guide

Cog API documentation

None.

ckeditor5-real-time-collaboration

Source file: @ckeditor/ckeditor5-real-time-collaboration/ckeditor5-metadata.json

PluginHTML output

Presence list

Book Feature guide

Cog API documentation

None.

Real-time collaborative comments

Book Feature guide

Cog API documentation

None.

Real-time collaborative editing

Book Feature guide

Cog API documentation

None.

Real-time collaborative track changes

Book Feature guide

Cog API documentation

None.

Real-time collaborative revision history

Book Feature guide

Cog API documentation

None.

ckeditor5-remove-format

Source file: @ckeditor/ckeditor5-remove-format/ckeditor5-metadata.json

PluginHTML output

Remove format

Book Feature guide

Cog API documentation

None.

ckeditor5-restricted-editing

Source file: @ckeditor/ckeditor5-restricted-editing/ckeditor5-metadata.json

PluginHTML output

Restricted editing mode

Book Feature guide

Cog API documentation

<span class="restricted-editing-exception">

Standard editing mode

Book Feature guide

Cog API documentation

<span class="restricted-editing-exception">

ckeditor5-revision-history

Source file: @ckeditor/ckeditor5-revision-history/ckeditor5-metadata.json

PluginHTML output

Revision History

Book Feature guide

Cog API documentation

None.

ckeditor5-select-all

Source file: @ckeditor/ckeditor5-select-all/ckeditor5-metadata.json

PluginHTML output

Select all

Book Feature guide

Cog API documentation

None.

ckeditor5-show-blocks

Source file: @ckeditor/ckeditor5-show-blocks/ckeditor5-metadata.json

PluginHTML output

Show blocks

Book Feature guide

Cog API documentation

None.

ckeditor5-slash-command

Source file: @ckeditor/ckeditor5-slash-command/ckeditor5-metadata.json

PluginHTML output

Slash command

Book Feature guide

Cog API documentation

None.

ckeditor5-source-editing

Source file: @ckeditor/ckeditor5-source-editing/ckeditor5-metadata.json

PluginHTML output

Source editing

Book Feature guide

Cog API documentation

None.

ckeditor5-special-characters

Source file: @ckeditor/ckeditor5-special-characters/ckeditor5-metadata.json

PluginHTML output

Special characters

Book Feature guide

Cog API documentation

None.

Special characters essentials

Book Feature guide

Cog API documentation

None.

Special characters arrows

Book Feature guide

Cog API documentation

None.

Special characters currency

Book Feature guide

Cog API documentation

None.

Special characters latin

Book Feature guide

Cog API documentation

None.

Special characters mathematical

Book Feature guide

Cog API documentation

None.

Special characters text

Book Feature guide

Cog API documentation

None.

ckeditor5-style

Source file: @ckeditor/ckeditor5-style/ckeditor5-metadata.json

PluginHTML output

Style

Book Feature guide

Cog API documentation

<* class="*">

The plugin can output any arbitrary HTML depending on its configuration.

ckeditor5-table

Source file: @ckeditor/ckeditor5-table/ckeditor5-metadata.json

PluginHTML output

Table

Book Feature guide

Cog API documentation

<figure class="table">
<table><thead><tbody><tr>
<td
colspan="*"
rowspan="*"
>
<th
colspan="*"
rowspan="*"
>

Table cell properties

Book Feature guide

Cog API documentation

<td style="background-color:*; border:*; border-*:*; height:*; padding:*; text-align:*; vertical-align:*; width:*"><th style="background-color:*; border:*; border-*:*; height:*; padding:*; text-align:*; vertical-align:*; width:*">

Table properties

Book Feature guide

Cog API documentation

<figure style="float:*; height:*; width:*">
<table style="background-color:*; border:*; border-*:*">

Table toolbar

Book Feature guide

Cog API documentation

None.

Table caption

Book Feature guide

Cog API documentation

<figcaption data-placeholder="*">

Table column resize

Book Feature guide

Cog API documentation

<colgroup>
<col style="width:*">

ckeditor5-template

Source file: @ckeditor/ckeditor5-template/ckeditor5-metadata.json

PluginHTML output

Template

Book Feature guide

Cog API documentation

None.

ckeditor5-track-changes

Source file: @ckeditor/ckeditor5-track-changes/ckeditor5-metadata.json

PluginHTML output

Track changes

Book Feature guide

Cog API documentation

None.

Track changes data

Book Feature guide

Cog API documentation

None.

ckeditor5-typing

Source file: @ckeditor/ckeditor5-typing/ckeditor5-metadata.json

PluginHTML output

Text transformation

Book Feature guide

Cog API documentation

None.

ckeditor5-ui

Source file: @ckeditor/ckeditor5-ui/ckeditor5-metadata.json

PluginHTML output

Block toolbar

Book Feature guide

Cog API documentation

None.

Accessibility help

Book Feature guide

Cog API documentation

None.

ckeditor5-undo

Source file: @ckeditor/ckeditor5-undo/ckeditor5-metadata.json

PluginHTML output

Undo

Book Feature guide

Cog API documentation

None.

ckeditor5-upload

Source file: @ckeditor/ckeditor5-upload/ckeditor5-metadata.json

PluginHTML output

Base64 upload adapter

Book Feature guide

Cog API documentation

None.

Simple upload adapter

Book Feature guide

Cog API documentation

None.

ckeditor5-watchdog

Source file: @ckeditor/ckeditor5-watchdog/ckeditor5-metadata.json

PluginHTML output

Watchdog

Book Feature guide

Cog API documentation

None.

ckeditor5-word-count

Source file: @ckeditor/ckeditor5-word-count/ckeditor5-metadata.json

PluginHTML output

Word count

Book Feature guide

Cog API documentation

None.

mathtype-ckeditor5

Source file: not published yet

PluginHTML output

MathType

Book Feature guide

<* *="*">

For a complete list of available MathML element and attribute names, visit MDN Web Docs for MathML.

wproofreader-ckeditor5

Source file: not published yet

PluginHTML output

WProofreader

Book Feature guide

None.