Custom Highlighter to add font color to your text within Ckeditor 5.
First, install the build from npm:
npm i ckeditor5-highlight-color
Use it in your JavaScript application:
import Highlight from 'ckeditor5-highlight-color/src/highlight';
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ Highlight, ... ],
toolbar: [ 'highlight', ... ]
} )
.then( ... )
.catch( ... );
Licensed under the terms of GNU General Public License Version 2 or later.