CKEditor 5 emoji feature
This package implements the emoji feature for CKEditor 5.
The plugin was created during hackathon, it is roughly based on the source code of the link plugin. It basically inserts Unicode emoji into the editor at the current cursor position.
CKEditor 5 compatibility
The plugin was built on top of the latest stable version of CKEditor 5 (v11.0.1
).
😎 Enabling the emoji plugin
Since this is a third-party plugin, it is not enabled by default in CKEditor 5 and has to be added to it manually. For more information check the official documentation about creating custom builds.
To install it, run:
npm install --save @wwalc/ckeditor5-emoji
When updating the build configuration use the following:
-
@wwalc/ckeditor5-emoji/src/emoji
– plugin import path -
Emoji
– plugin name -
emoji
– toolbar item (button)
Development environment
To enable the plugin you amy also setup a local development environment and build a custom editor there.
Configuration
The list of Emojis is configurable via config.emoji
:
import Emoji from '@wwalc/ckeditor5-emoji/src/emoji';
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [
Essentials,
Paragraph, Heading, Bold, Italic, List, Emoji
],
emoji: [
{ name: 'smile', text: '😀' },
{ name: 'wink', text: '😉' },
{ name: 'cool', text: '😎' },
{ name: 'surprise', text: '😮' },
{ name: 'confusion', text: '😕' },
{ name: 'crying', text: '😢' }
],
toolbar: [ 'heading', 'undo', 'redo', 'bold', 'italic', 'emoji' ]
} )
.then( editor => {
window.editor = editor;
} )
.catch( err => {
console.error( err.stack );
} );
Support
The plugin comes with no support. However if you find it useful, feel free to submit an issue and/or send a pull request.
License
Licensed under the GPL, LGPL and MPL licenses, at your choice. For full details about the license, please check the LICENSE.md
file.