Replace the built-in RTE with CKEditor
npm install grapesjs-plugin-ckeditorThis plugin replaces the default Rich Text Editor with the CKEditor

* Plugin name: grapesjs-plugin-ckeditor
|Option|Description|Default|
|-|-|-
|options|CKEditor's configuration object, eg. { language: 'en', toolbar: [...], ...}|{}|
|position|Position side of the toolbar, options: left, center, right|left|
|ckeditor|Pass CKEDITOR constructor or the CDN string from which the CKEDITOR will be loaded.|https://cdn.ckeditor.com/4.21.0/standard-all/ckeditor.js|
|customRte|Extend the default customRTE interface.|{}|
|onToolbar|Customize CKEditor toolbar element once created, eg. onToolbar: (el) => { el.style.minWidth = '350px' }|`|
* CDN
* https://unpkg.com/grapesjs-plugin-ckeditornpm i grapesjs-plugin-ckeditor
* NPM
* git clone https://github.com/GrapesJS/ckeditor.git
* GIT
*
`html
`
Clone the repository
`sh`
$ git clone https://github.com/GrapesJS/ckeditor.git
$ cd ckeditor
Install dependencies
`sh`
$ npm i
Start the dev server
`sh``
$ npm start
BSD 3-Clause