|
|
@@ -1,33 +1,33 @@
|
|
|
CKEditor 5 [](https://twitter.com/intent/tweet?text=Check%20out%20CKEditor%205%20on%20GitHub%20&url=https://github.com/ckeditor/ckeditor5)
|
|
|
===================================
|
|
|
-A set of ready to use rich text editors created with a powerful framework. Made with real-time collaborative editing in mind.
|
|
|
-
|
|
|
-
|
|
|
|
|
|
[](https://gitter.im/ckeditor/ckeditor5?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
|
|
[](https://travis-ci.org/ckeditor/ckeditor5)
|
|
|
[](https://david-dm.org/ckeditor/ckeditor5)
|
|
|
[](https://david-dm.org/ckeditor/ckeditor5?type=dev)
|
|
|
|
|
|
+A set of ready to use rich text editors created with a powerful framework. Made with real-time collaborative editing in mind.
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
## Table of contents
|
|
|
|
|
|
-- [Quick start](#quick-start)
|
|
|
- - [CKEditor 5 Builds](#ckeditor-5-builds)
|
|
|
- - [Classic editor](#classic-editor)
|
|
|
- - [CKEditor 5 Framework](#ckeditor-5-framework)
|
|
|
-- [Documentation and FAQ](#documentation-and-faq)
|
|
|
-- [Contributing and project organization](#contributing-and-project-organization)
|
|
|
- - [Ideas and discussions](#ideas-and-discussions)
|
|
|
- - [Development](#development)
|
|
|
- - [Reporting issues and feature requests](#reporting-issues-and-feature-requests)
|
|
|
-- [Releases](#releases)
|
|
|
-- [Packages](#packages)
|
|
|
- - [Core libraries](#core-libraries)
|
|
|
- - [Editors](#editors)
|
|
|
- - [Features](#features)
|
|
|
- - [Themes](#themes)
|
|
|
- - [Builds](#builds)
|
|
|
-- [License](#license)
|
|
|
+* [Quick start](#quick-start)
|
|
|
+ * [CKEditor 5 Builds](#ckeditor-5-builds)
|
|
|
+ * [CKEditor 5 Framework](#ckeditor-5-framework)
|
|
|
+* [Documentation and FAQ](#documentation-and-faq)
|
|
|
+* [Contributing and project organization](#contributing-and-project-organization)
|
|
|
+ * [Ideas and discussions](#ideas-and-discussions)
|
|
|
+ * [Development](#development)
|
|
|
+ * [Reporting issues and feature requests](#reporting-issues-and-feature-requests)
|
|
|
+* [Releases](#releases)
|
|
|
+* [Packages](#packages)
|
|
|
+ * [Core libraries](#core-libraries)
|
|
|
+ * [Editors](#editors)
|
|
|
+ * [Features](#features)
|
|
|
+ * [Themes](#themes)
|
|
|
+ * [Builds](#builds)
|
|
|
+* [License](#license)
|
|
|
|
|
|
## Quick start
|
|
|
|
|
|
@@ -36,27 +36,33 @@ A set of ready to use rich text editors created with a powerful framework. Made
|
|
|
CKEditor 5 Builds are a set of ready to use rich text editors. Every "build" provides a single type of editor with a set of features and a default configuration.
|
|
|
|
|
|
The following CKEditor 5 Builds are currently available:
|
|
|
-- [Classic editor](https://docs.ckeditor.com/ckeditor5/latest/builds/guides/overview.html#Classic-editor)
|
|
|
-- [Inline editor](https://docs.ckeditor.com/ckeditor5/latest/builds/guides/overview.html#Inline-editor)
|
|
|
-- [Balloon editor](https://docs.ckeditor.com/ckeditor5/latest/builds/guides/overview.html#Balloon-editor)
|
|
|
|
|
|
-#### Classic editor
|
|
|
+* [Classic editor](https://docs.ckeditor.com/ckeditor5/latest/builds/guides/overview.html#Classic-editor)
|
|
|
+* [Inline editor](https://docs.ckeditor.com/ckeditor5/latest/builds/guides/overview.html#Inline-editor)
|
|
|
+* [Balloon editor](https://docs.ckeditor.com/ckeditor5/latest/builds/guides/overview.html#Balloon-editor)
|
|
|
+
|
|
|
+#### Example
|
|
|
|
|
|
Creating an editor using a CKEditor 5 build is very simple and can be described in two steps:
|
|
|
-1. Load the desired editor via the <script> tag.
|
|
|
-2. Call the static create() method to create the editor.
|
|
|
+
|
|
|
+1. Load the desired editor via the `<script>` tag.
|
|
|
+2. Call the static `create()` method to create the editor.
|
|
|
|
|
|
In your HTML page add an element that CKEditor should replace:
|
|
|
|
|
|
-`<textarea name="content" id="editor"></textarea>`
|
|
|
+```html
|
|
|
+<textarea name="content" id="editor"></textarea>
|
|
|
+```
|
|
|
|
|
|
Load CKEditor 5, the classic editor build (here [CDN](https://cdn.ckeditor.com/) location is used):
|
|
|
|
|
|
-`<script src="https://cdn.ckeditor.com/ckeditor5/1.0.0-alpha.2/classic/ckeditor.js"></script>`
|
|
|
+```js
|
|
|
+<script src="https://cdn.ckeditor.com/ckeditor5/<version>/classic/ckeditor.js"></script>
|
|
|
+```
|
|
|
|
|
|
-Call the [ClassicEditor.create()](https://docs.ckeditor.com/ckeditor5/latest/api/module_editor-classic_classiceditor-ClassicEditor.html#create) method:
|
|
|
+Call the [`ClassicEditor.create()`](https://docs.ckeditor.com/ckeditor5/latest/api/module_editor-classic_classiceditor-ClassicEditor.html#create) method:
|
|
|
|
|
|
-```
|
|
|
+```js
|
|
|
<script>
|
|
|
ClassicEditor
|
|
|
.create( document.querySelector( '#editor' ) )
|
|
|
@@ -74,7 +80,7 @@ To find out how to start with other builds please go to the [quick start section
|
|
|
|
|
|
CKEditor 5 Builds allow you to quickly and easily initialize one of the many types of editors in your application. At the same time, CKEditor 5 is also a framework for creating custom-made rich text editing solutions.
|
|
|
|
|
|
-To find out how to start building your own editor from scratch go to [CKEditor 5 Framework overview section of CKEditor 5 documentation](https://docs.ckeditor.com/ckeditor5/latest/framework/guides/overview.html).
|
|
|
+To find out how to start building your own editor from scratch go to [CKEditor 5 Framework overview section of CKEditor 5 documentation](https://docs.ckeditor.com/ckeditor5/latest/framework/guides/overview.html).
|
|
|
|
|
|
## Documentation and FAQ
|
|
|
|
|
|
@@ -113,11 +119,11 @@ Read more in the [Support](https://docs.ckeditor.com/ckeditor5/latest/framework/
|
|
|
|
|
|
The latest five releases:
|
|
|
|
|
|
-* [Second alpha release of CKEditor 5 v1.0.0](https://ckeditor.com/blog/Second-alpha-release-of-CKEditor-5-v1.0.0/)
|
|
|
-* [First alpha release of CKEditor 5 v1.0.0](https://ckeditor.com/blog/First-alpha-release-of-CKEditor-5-v1.0.0/)
|
|
|
-* [11th developer preview of CKEditor 5](https://ckeditor.com/blog/11th-developer-preview-of-CKEditor-5-available/)
|
|
|
-* [10th developer preview of CKEditor 5 available](https://ckeditor.com/blog/10th-developer-preview-of-CKEditor-5-available/)
|
|
|
-* [9th developer preview of CKEditor 5 available](https://ckeditor.com/blog/9th-developer-preview-of-CKEditor-5-available/)
|
|
|
+* [Second alpha release of CKEditor 5 v1.0.0](https://ckeditor.com/blog/Second-alpha-release-of-CKEditor-5-v1.0.0/) (<time datetime="2017-11-14T12:52:18Z"><i>Nov 14, 2017</i></time>)
|
|
|
+* [First alpha release of CKEditor 5 v1.0.0](https://ckeditor.com/blog/First-alpha-release-of-CKEditor-5-v1.0.0/) (<time datetime="2017-10-03T13:09:29Z"><i>Oct 3, 2017</i></time>)
|
|
|
+* [11th developer preview of CKEditor 5](https://ckeditor.com/blog/11th-developer-preview-of-CKEditor-5-available/) (<time datetime="2017-09-03T19:35:48Z"><i>Sep 3, 2017</i></time>)
|
|
|
+* [10th developer preview of CKEditor 5 available](https://ckeditor.com/blog/10th-developer-preview-of-CKEditor-5-available/) (<time datetime="2017-05-07T21:57:04Z"><i>May 7, 2017</i></time>)
|
|
|
+* [9th developer preview of CKEditor 5 available](https://ckeditor.com/blog/9th-developer-preview-of-CKEditor-5-available/) (<time datetime="2017-04-05T17:58:27Z"><i>Apr 5, 2017</i></time>)
|
|
|
|
|
|
For more CKEditor 5 release blog posts [browse the CKEditor blog](https://ckeditor.com/blog/?category=releases&tags=CKEditor-5).
|
|
|
|
|
|
@@ -128,8 +134,9 @@ For more CKEditor 5 release blog posts [browse the CKEditor blog](https://ckedit
|
|
|
<table>
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th>Package</th>
|
|
|
- <th>Status</th>
|
|
|
+ <th width="30%">Name</th>
|
|
|
+ <th width="15%">Version</th>
|
|
|
+ <th width="55%">Description</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@@ -137,78 +144,84 @@ For more CKEditor 5 release blog posts [browse the CKEditor blog](https://ckedit
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-engine"><code>@ckeditor/ckeditor5-engine</code></a>
|
|
|
- <br>
|
|
|
- The editing engine.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-engine"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-engine.svg" alt="ckeditor5-engine npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-engine"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-engine/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-engine/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-engine.svg" alt="ckeditor5-engine coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-engine"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-engine.svg" alt="@ckeditor/ckeditor5-engine npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ The editing engine.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-core"><code>@ckeditor/ckeditor5-core</code></a>
|
|
|
- <br>
|
|
|
- The core editor architecture.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-core"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-core.svg" alt="ckeditor5-core npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-core"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-core/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-core/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-core.svg" alt="ckeditor5-core coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-core"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-core.svg" alt="@ckeditor/ckeditor5-core npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ The core editor architecture.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-ui"><code>@ckeditor/ckeditor5-ui</code></a>
|
|
|
- <br>
|
|
|
- The editor UI library.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-ui"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-ui.svg" alt="ckeditor5-ui npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-ui"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-ui/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-ui/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-ui.svg" alt="ckeditor5-ui coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-ui"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-ui.svg" alt="@ckeditor/ckeditor5-ui npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ The editor UI library.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-utils"><code>@ckeditor/ckeditor5-utils</code></a>
|
|
|
- <br>
|
|
|
- The editor utilities library.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-utils"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-utils.svg" alt="ckeditor5-utils npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-utils"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-utils/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-utils/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-utils.svg" alt="ckeditor5-utils coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-utils"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-utils.svg" alt="@ckeditor/ckeditor5-utils npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ The editor utilities library.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-upload"><code>@ckeditor/ckeditor5-upload</code></a>
|
|
|
- <br>
|
|
|
- Introduces the file upload utilities.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-upload"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-upload.svg" alt="ckeditor5-upload npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-upload"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-upload/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-upload/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-upload.svg" alt="ckeditor5-upload coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-upload"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-upload.svg" alt="@ckeditor/ckeditor5-upload npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces the file upload utilities.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-widget"><code>@ckeditor/ckeditor5-widget</code></a>
|
|
|
- <br>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-widget"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-widget.svg" alt="@ckeditor/ckeditor5-widget npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
Introduces the widget API.
|
|
|
</td>
|
|
|
+</tr>
|
|
|
+
|
|
|
+<tr>
|
|
|
+ <td>
|
|
|
+ <a href="https://github.com/ckeditor/ckeditor5-cloudservices"><code>@ckeditor/ckeditor5-cloudservices</code></a>
|
|
|
+ </td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-widget"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-widget.svg" alt="ckeditor5-widget npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-widget"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-widget/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-widget/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-widget.svg" alt="ckeditor5-widget coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-cloudservices"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-cloudservices.svg" alt="@ckeditor/ckeditor5-cloudservices npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ CKEditor 5's Cloud Services integration layer.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
@@ -220,8 +233,9 @@ For more CKEditor 5 release blog posts [browse the CKEditor blog](https://ckedit
|
|
|
<table>
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th>Package</th>
|
|
|
- <th>Status</th>
|
|
|
+ <th width="30%">Name</th>
|
|
|
+ <th width="15%">Version</th>
|
|
|
+ <th width="55%">Description</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@@ -229,39 +243,36 @@ For more CKEditor 5 release blog posts [browse the CKEditor blog](https://ckedit
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-editor-classic"><code>@ckeditor/ckeditor5-editor-classic</code></a>
|
|
|
- <br>
|
|
|
- The classic editor implementation.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-classic"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-editor-classic.svg" alt="ckeditor5-editor-classic npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-editor-classic"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-editor-classic/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-editor-classic/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-editor-classic.svg" alt="ckeditor5-editor-classic coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-classic"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-editor-classic.svg" alt="@ckeditor/ckeditor5-editor-classic npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ The classic editor implementation.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-editor-inline"><code>@ckeditor/ckeditor5-editor-inline</code></a>
|
|
|
- <br>
|
|
|
- The inline editor implementation.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-inline"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-editor-inline.svg" alt="ckeditor5-editor-inline npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-editor-inline"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-editor-inline/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-editor-inline/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-editor-inline.svg" alt="ckeditor5-editor-inline coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-inline"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-editor-inline.svg" alt="@ckeditor/ckeditor5-editor-inline npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ The inline editor implementation.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-editor-balloon"><code>@ckeditor/ckeditor5-editor-balloon</code></a>
|
|
|
- <br>
|
|
|
- The balloon editor (Medium-like) implementation.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-balloon"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-editor-balloon.svg" alt="ckeditor5-editor-balloon npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-editor-balloon"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-editor-balloon/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-editor-balloon/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-editor-balloon.svg" alt="ckeditor5-editor-balloon coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-balloon"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-editor-balloon.svg" alt="@ckeditor/ckeditor5-editor-balloon npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ The balloon editor (Medium-like) implementation.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
@@ -273,8 +284,9 @@ For more CKEditor 5 release blog posts [browse the CKEditor blog](https://ckedit
|
|
|
<table>
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th>Package</th>
|
|
|
- <th>Status</th>
|
|
|
+ <th width="30%">Name</th>
|
|
|
+ <th width="15%">Version</th>
|
|
|
+ <th width="55%">Description</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@@ -282,195 +294,180 @@ For more CKEditor 5 release blog posts [browse the CKEditor blog](https://ckedit
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-adapter-ckfinder"><code>@ckeditor/ckeditor5-adapter-ckfinder</code></a>
|
|
|
- <br>
|
|
|
- Introduces the <a href="https://ckeditor.com/ckeditor-4/ckfinder/">CKFinder</a> adapter for features which require upload capabilities.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-adapter-ckfinder"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-adapter-ckfinder.svg" alt="ckeditor5-adapter-ckfinder npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-adapter-ckfinder"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-adapter-ckfinder/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-adapter-ckfinder/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-adapter-ckfinder.svg" alt="ckeditor5-adapter-ckfinder coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-adapter-ckfinder"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-adapter-ckfinder.svg" alt="@ckeditor/ckeditor5-adapter-ckfinder npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces the <a href="https://ckeditor.com/ckeditor-4/ckfinder/">CKFinder</a> adapter for features which require upload capabilities.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-autoformat"><code>@ckeditor/ckeditor5-autoformat</code></a>
|
|
|
- <br>
|
|
|
- Introduces the autoformatting feature. Replaces predefined characters with a corresponding format (e.g. <code>**foo**</code> becomes bolded <code><strong>foo</strong></code>).
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-autoformat"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-autoformat.svg" alt="ckeditor5-autoformat npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-autoformat"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-autoformat/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-autoformat/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-autoformat.svg" alt="ckeditor5-autoformat coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-autoformat"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-autoformat.svg" alt="@ckeditor/ckeditor5-autoformat npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces the autoformatting feature. Replaces predefined characters with a corresponding format (e.g. <code>**foo**</code> becomes bolded <code><strong>foo</strong></code>).
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-basic-styles"><code>@ckeditor/ckeditor5-basic-styles</code></a>
|
|
|
- <br>
|
|
|
- Introduces the bold, italic, underline and code features.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-basic-styles"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-basic-styles.svg" alt="ckeditor5-basic-styles npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-basic-styles"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-basic-styles/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-basic-styles/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-basic-styles.svg" alt="ckeditor5-basic-styles coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-basic-styles"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-basic-styles.svg" alt="@ckeditor/ckeditor5-basic-styles npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces the bold, italic, underline and code features.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-block-quote"><code>@ckeditor/ckeditor5-block-quote</code></a>
|
|
|
- <br>
|
|
|
- Introduces the block quote feature.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-block-quote"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-block-quote.svg" alt="ckeditor5-block-quote npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-block-quote"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-block-quote/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-block-quote/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-block-quote.svg" alt="ckeditor5-block-quote coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-block-quote"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-block-quote.svg" alt="@ckeditor/ckeditor5-block-quote npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces the block quote feature.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-clipboard"><code>@ckeditor/ckeditor5-clipboard</code></a>
|
|
|
- <br>
|
|
|
- Introduces the clipboard integration.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-clipboard"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-clipboard.svg" alt="ckeditor5-clipboard npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-clipboard"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-clipboard/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-clipboard/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-clipboard.svg" alt="ckeditor5-clipboard coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-clipboard"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-clipboard.svg" alt="@ckeditor/ckeditor5-clipboard npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces the clipboard integration.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-enter"><code>@ckeditor/ckeditor5-enter</code></a>
|
|
|
- <br>
|
|
|
- Introduces the Enter key feature.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-enter"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-enter.svg" alt="ckeditor5-enter npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-enter"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-enter/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-enter/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-enter.svg" alt="ckeditor5-enter coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-enter"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-enter.svg" alt="@ckeditor/ckeditor5-enter npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces the Enter key feature.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-easy-image"><code>@ckeditor/ckeditor5-easy-image</code></a>
|
|
|
- <br>
|
|
|
- Introduces Easy Image with Cloud Services feature.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-easy-image"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-easy-image.svg" alt="ckeditor5-easy-image npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-easy-image"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-easy-image/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-easy-image/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-easy-image.svg" alt="ckeditor5-easy-image coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-easy-image"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-easy-image.svg" alt="@ckeditor/ckeditor5-easy-image npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces Easy Image with Cloud Services feature.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-heading"><code>@ckeditor/ckeditor5-heading</code></a>
|
|
|
- <br>
|
|
|
- Introduces the heading feature.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-heading"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-heading.svg" alt="ckeditor5-heading npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-heading"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-heading/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-heading/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-heading.svg" alt="ckeditor5-heading coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-heading"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-heading.svg" alt="@ckeditor/ckeditor5-heading npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces the heading feature.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-image"><code>@ckeditor/ckeditor5-image</code></a>
|
|
|
- <br>
|
|
|
- Introduces the image feature. Supports image styles and captioning.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-image"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-image.svg" alt="ckeditor5-image npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-image"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-image/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-image/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-image.svg" alt="ckeditor5-image coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-image"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-image.svg" alt="@ckeditor/ckeditor5-image npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces the image feature. Supports image styles and captioning.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-link"><code>@ckeditor/ckeditor5-link</code></a>
|
|
|
- <br>
|
|
|
- Introduces the link feature.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-link"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-link.svg" alt="ckeditor5-link npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-link"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-link/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-link/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-link.svg" alt="ckeditor5-link coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-link"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-link.svg" alt="@ckeditor/ckeditor5-link npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces the link feature.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-list"><code>@ckeditor/ckeditor5-list</code></a>
|
|
|
- <br>
|
|
|
- Introduces numbered and bulleted lists feature.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-list"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-list.svg" alt="ckeditor5-list npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-list"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-list/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-list/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-list.svg" alt="ckeditor5-list coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-list"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-list.svg" alt="@ckeditor/ckeditor5-list npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces numbered and bulleted lists feature.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-markdown-gfm"><code>@ckeditor/ckeditor5-markdown-gfm</code></a>
|
|
|
- <br>
|
|
|
- Introduces GitHub-flavored Markdown data processor.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-markdown-gfm"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-markdown-gfm.svg" alt="ckeditor5-markdown-gfm npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-markdown-gfm"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-markdown-gfm/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-markdown-gfm/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-markdown-gfm.svg" alt="ckeditor5-markdown-gfm coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-markdown-gfm"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-markdown-gfm.svg" alt="@ckeditor/ckeditor5-markdown-gfm npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces GitHub-flavored Markdown data processor.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-paragraph"><code>@ckeditor/ckeditor5-paragraph</code></a>
|
|
|
- <br>
|
|
|
- Introduces the paragraph feature.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-paragraph"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-paragraph.svg" alt="ckeditor5-paragraph npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-paragraph"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-paragraph/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-paragraph/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-paragraph.svg" alt="ckeditor5-paragraph coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-paragraph"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-paragraph.svg" alt="@ckeditor/ckeditor5-paragraph npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces the paragraph feature.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-typing"><code>@ckeditor/ckeditor5-typing</code></a>
|
|
|
- <br>
|
|
|
- Introduces typing and deleting features.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-typing"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-typing.svg" alt="ckeditor5-typing npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-typing"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-typing/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-typing/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-typing.svg" alt="ckeditor5-typing coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-typing"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-typing.svg" alt="@ckeditor/ckeditor5-typing npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces typing and deleting features.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-undo"><code>@ckeditor/ckeditor5-undo</code></a>
|
|
|
- <br>
|
|
|
- Introduces the undo feature.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-undo"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-undo.svg" alt="ckeditor5-undo npm package badge"></a>
|
|
|
- <a href="https://travis-ci.org/ckeditor/ckeditor5-undo"><img src="https://img.shields.io/travis/ckeditor/ckeditor5-undo/master.svg" alt="build status badge"></a>
|
|
|
- <a href="https://codeclimate.com/github/ckeditor/ckeditor5-undo/coverage"><img src="https://img.shields.io/codeclimate/coverage/github/ckeditor/ckeditor5-undo.svg" alt="ckeditor5-undo coverage badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-undo"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-undo.svg" alt="@ckeditor/ckeditor5-undo npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ Introduces the undo feature.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
@@ -482,8 +479,9 @@ For more CKEditor 5 release blog posts [browse the CKEditor blog](https://ckedit
|
|
|
<table>
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th>Package</th>
|
|
|
- <th>Status</th>
|
|
|
+ <th width="30%">Name</th>
|
|
|
+ <th width="15%">Version</th>
|
|
|
+ <th width="55%">Description</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@@ -491,7 +489,11 @@ For more CKEditor 5 release blog posts [browse the CKEditor blog](https://ckedit
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-theme-lark"><code>@ckeditor/ckeditor5-theme-lark</code></a>
|
|
|
- <br>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-theme-lark"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-theme-lark.svg" alt="@ckeditor/ckeditor5-theme-lark npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
The Lark theme.
|
|
|
</td>
|
|
|
<td>
|
|
|
@@ -508,8 +510,9 @@ For more CKEditor 5 release blog posts [browse the CKEditor blog](https://ckedit
|
|
|
<table>
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th>Package</th>
|
|
|
- <th>Status</th>
|
|
|
+ <th width="30%">Name</th>
|
|
|
+ <th width="15%">Version</th>
|
|
|
+ <th width="55%">Description</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@@ -517,33 +520,36 @@ For more CKEditor 5 release blog posts [browse the CKEditor blog](https://ckedit
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-build-classic"><code>@ckeditor/ckeditor5-build-classic</code></a>
|
|
|
- <br>
|
|
|
- The classic editor build.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-build-classic"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-build-classic.svg" alt="ckeditor5-build-classic npm package badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-build-classic"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-build-classic.svg" alt="@ckeditor/ckeditor5-build-classic npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ The classic editor build.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-build-inline"><code>@ckeditor/ckeditor5-build-inline</code></a>
|
|
|
- <br>
|
|
|
- The inline editor build.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-build-inline"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-build-inline.svg" alt="ckeditor5-build-inline npm package badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-build-inline"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-build-inline.svg" alt="@ckeditor/ckeditor5-build-inline npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ The inline editor build.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td>
|
|
|
<a href="https://github.com/ckeditor/ckeditor5-build-balloon"><code>@ckeditor/ckeditor5-build-balloon</code></a>
|
|
|
- <br>
|
|
|
- The balloon editor (Medium-like) build.
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-build-balloon"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-build-balloon.svg" alt="ckeditor5-build-balloon npm package badge"></a>
|
|
|
+ <a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-build-balloon"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-build-balloon.svg" alt="@ckeditor/ckeditor5-build-balloon npm package badge"></a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ The balloon editor (Medium-like) build.
|
|
|
</td>
|
|
|
</tr>
|
|
|
|