Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@ckeditor/ckeditor5-highlight
Advanced tools
@ckeditor/ckeditor5-highlight is a plugin for CKEditor 5 that allows users to highlight text with different colors. It is useful for emphasizing parts of the text, making it easier to spot important information, or for collaborative editing where different colors can represent different users' contributions.
Highlight Text
This feature allows users to highlight text within the editor. The code sample demonstrates how to initialize CKEditor with the Highlight plugin and add the highlight button to the toolbar.
ClassicEditor.create(document.querySelector('#editor'), { plugins: [ Highlight ], toolbar: [ 'highlight' ] })
Custom Highlight Options
This feature allows users to define custom highlight options. The code sample shows how to configure the editor with custom highlight colors and options.
ClassicEditor.create(document.querySelector('#editor'), { plugins: [ Highlight ], toolbar: [ 'highlight' ], highlight: { options: [ { model: 'yellowMarker', class: 'marker-yellow', title: 'Yellow marker', color: 'var(--ck-highlight-marker-yellow)', type: 'marker' }, { model: 'greenMarker', class: 'marker-green', title: 'Green marker', color: 'var(--ck-highlight-marker-green)', type: 'marker' } ] } })
Quill is a modern WYSIWYG editor built for compatibility and extensibility. It offers a similar text highlighting feature through its built-in formats and can be extended with custom formats. Compared to @ckeditor/ckeditor5-highlight, Quill provides a more flexible and extensible architecture but may require more configuration for advanced use cases.
TinyMCE is another popular WYSIWYG editor that includes text highlighting capabilities. It offers a wide range of plugins and customization options. TinyMCE is comparable to @ckeditor/ckeditor5-highlight in terms of functionality but provides a different API and configuration approach.
This package implements text highlight support for CKEditor 5.
This plugin is part of the ckeditor5
package. Install the whole package to use it.
npm install ckeditor5
If you want to check full CKEditor 5 capabilities, sign up for a free non-commitment 14-day trial.
Check out the demo in the highlight feature guide.
See the @ckeditor/ckeditor5-highlight
package page in CKEditor 5 documentation.
Licensed under a dual-license model, this software is available under:
For more information, see: https://ckeditor.com/legal/ckeditor-licensing-options.
FAQs
Highlight feature for CKEditor 5.
The npm package @ckeditor/ckeditor5-highlight receives a total of 288,938 weekly downloads. As such, @ckeditor/ckeditor5-highlight popularity was classified as popular.
We found that @ckeditor/ckeditor5-highlight demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.