@ckeditor/ckeditor5-html-support 43.3.1 → 44.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -8
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -3,10 +3,22 @@ CKEditor 5 HTML Support feature
|
|
|
3
3
|
|
|
4
4
|
[](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-support)
|
|
5
5
|
[](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
|
|
6
|
-
[](https://app.circleci.com/pipelines/github/ckeditor/ckeditor5?branch=master)
|
|
7
7
|
|
|
8
8
|
This package implements the General HTML Support feature for CKEditor 5. It allows enabling unsupported HTML features in the rich-text editor at low cost.
|
|
9
9
|
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
12
|
+
This plugin is part of the `ckeditor5` package. Install the whole package to use it.
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install ckeditor5
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Create free account
|
|
19
|
+
|
|
20
|
+
If you want to check full CKEditor 5 capabilities, sign up for a [free non-commitment 14-day trial](https://portal.ckeditor.com/signup).
|
|
21
|
+
|
|
10
22
|
## Demo
|
|
11
23
|
|
|
12
24
|
Check out the demo in the [General HTML Support feature guide](https://ckeditor.com/docs/ckeditor5/latest/features/html/general-html-support.html#demo).
|
|
@@ -14,13 +26,6 @@ Check out the demo in the [General HTML Support feature guide](https://ckeditor.
|
|
|
14
26
|
## Documentation
|
|
15
27
|
|
|
16
28
|
See the [`@ckeditor/ckeditor5-html-support` package](https://ckeditor.com/docs/ckeditor5/latest/api/html-support.html) page as well as the [General HTML Support feature](https://ckeditor.com/docs/ckeditor5/latest/features/html/general-html-support.html) guide in [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/).
|
|
17
|
-
|
|
18
|
-
## Installation
|
|
19
|
-
|
|
20
|
-
```bash
|
|
21
|
-
npm install ckeditor5
|
|
22
|
-
```
|
|
23
|
-
|
|
24
29
|
## License
|
|
25
30
|
|
|
26
31
|
Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). For full details about the license, please check the `LICENSE.md` file or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-html-support",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "44.0.0-alpha.1",
|
|
4
4
|
"description": "HTML Support feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
"type": "module",
|
|
18
18
|
"main": "src/index.js",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@ckeditor/ckeditor5-core": "
|
|
21
|
-
"@ckeditor/ckeditor5-engine": "
|
|
22
|
-
"@ckeditor/ckeditor5-enter": "
|
|
23
|
-
"@ckeditor/ckeditor5-utils": "
|
|
24
|
-
"@ckeditor/ckeditor5-widget": "
|
|
25
|
-
"ckeditor5": "
|
|
20
|
+
"@ckeditor/ckeditor5-core": "44.0.0-alpha.1",
|
|
21
|
+
"@ckeditor/ckeditor5-engine": "44.0.0-alpha.1",
|
|
22
|
+
"@ckeditor/ckeditor5-enter": "44.0.0-alpha.1",
|
|
23
|
+
"@ckeditor/ckeditor5-utils": "44.0.0-alpha.1",
|
|
24
|
+
"@ckeditor/ckeditor5-widget": "44.0.0-alpha.1",
|
|
25
|
+
"ckeditor5": "44.0.0-alpha.1",
|
|
26
26
|
"lodash-es": "4.17.21"
|
|
27
27
|
},
|
|
28
28
|
"author": "CKSource (http://cksource.com/)",
|