What is @ckeditor/ckeditor5-remove-format?
@ckeditor/ckeditor5-remove-format is a plugin for CKEditor 5 that allows users to remove formatting from selected text. This can be particularly useful in rich text editors where users may want to clear styles and formatting applied to text, reverting it to plain text.
Remove Formatting
This feature allows users to remove all formatting from the selected text. The code sample demonstrates how to integrate the RemoveFormat plugin into a CKEditor 5 instance and add the 'removeFormat' button to the toolbar.
ClassicEditor.create(document.querySelector('#editor'), { plugins: [ RemoveFormat ], toolbar: [ 'removeFormat' ] })