1.1.0 • Published 5 years ago

ckeditor5-highlight-color v1.1.0

Weekly downloads
2
License
GPL-2.0-or-later
Repository
github
Last release
5 years ago

CKEditor 5 Highlight Color Feature

Custom Highlighter to add font color to your text within Ckeditor 5.

Quick start

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( ... );

License

Licensed under the terms of GNU General Public License Version 2 or later.