codeslayer1 / react-ckeditor

CKEditor component for React with plugin and custom event listeners support
MIT License
129 stars 34 forks source link

Is there a plan for CKEditor 4.10.0? #49

Closed ghost closed 6 years ago

ghost commented 6 years ago

Is there a plan for CKEditor 4.10.0?

Nikodermus commented 6 years ago

+1

codeslayer1 commented 6 years ago

You can use CKEditor 4 out of the box with this package. Just pass the link to 4.10 Ckeditor script using the scriptUrl prop and you are ready to use the 4.10 version.

Also, if you are looking to use some of the new features such as mentions/autocomplete, you can create a custom builder using those plugins and use that build with the package.

For ex. to use mentions plugin, you can do it this way

<CKEditor
  content={this.state.content}
  scriptUrl= {use custom build url here}
  config={{
    mentions: [ { feed: ['Anna', 'Thomas', 'John'], minChars: 0 } ]
  }}
/>

Let me know in case you face any issue.

codeslayer1 commented 6 years ago

Closing this issue due to no activity. Feel free to re-open it in case you still face issues.