@_sh/strapi-plugin-ckeditor 1.0.4 → 1.0.7

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 CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  <h1 align="center">CKEditor 5 for Strapi</h1>
6
6
 
7
- <p align="center">Replaces the default Strapi WYSIWYG editor with a customized build of CKEditor 5 html editor packed with useful plugins.</p>
7
+ <p align="center">Replaces the default Strapi WYSIWYG editor with a customized build of CKEditor 5 packed with useful plugins.</p>
8
8
 
9
9
  ## 👋 Get Started
10
10
 
@@ -16,7 +16,7 @@
16
16
  * [Thanks](#thanks)
17
17
 
18
18
  ## <a id="features"></a>✨ Features
19
- This plugin works on custom build of CKEditor 5 packed with useful plugins.
19
+
20
20
  * **Lots of default plugins:** for styling text, images, tables and so on.
21
21
  * **Font color picker:** choose colors for font styling that's not defined in config from the color palette.
22
22
  * **Upload adapter for Strapi:** for upload images to your library when you drop an image into the editor.
@@ -62,7 +62,7 @@ or
62
62
  yarn build
63
63
  ```
64
64
 
65
- ## <a id="configuration"></a>🔧 Configuration
65
+ ## <a id="configuration"></a>⚙️ Configuration
66
66
  CKEditor config should be defined in `config.editor` field.
67
67
 
68
68
  Learn more about configuration from [official documentation](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/configuration.html).
@@ -230,18 +230,6 @@ module.exports = () => {
230
230
  {
231
231
  model: 'h3b',
232
232
  view: {name: 'h3', classes: 'ck-heading_h3_b'}, title: 'H3 (border)', class: 'ck-heading_heading3', converterPriority: 'high'
233
- },
234
- {
235
- model: 'h4b',
236
- view: {name: 'h4', classes: 'ck-heading_h4_b'}, title: 'H4 (border)', class: 'ck-heading_heading4', converterPriority: 'high'
237
- },
238
- {
239
- model: 'h5b',
240
- view: {name: 'h5', classes: 'ck-heading_h5_b'}, title: 'H5 (border)', class: 'ck-heading_heading5', converterPriority: 'high'
241
- },
242
- {
243
- model: 'h6b',
244
- view: {name: 'h6', classes: 'ck-heading_h6_b'}, title: 'H6 (border)', class: 'ck-heading_heading6', converterPriority: 'high'
245
233
  }
246
234
  ]
247
235
  }