textshine-ckeditor5-plugin
v0.0.2
Published
Textshine CKEditor 5 Plugin
Downloads
173
Readme
Textshine CKEditor5 Plugin
[!WARNING] Deprecated: Textshine Browser Extension 0.1.23 and newer support CKEditor 5 directly. This package is no longer needed and will not receive further updates.
Existing installations continue to work, but should migrate to the browser extension's built-in CKEditor 5 support.
Migration
- Make sure users have Textshine Browser Extension 0.1.23 or newer installed.
- Remove
textshine-ckeditor5-pluginfrom your dependencies:
pnpm remove textshine-ckeditor5-plugin- Remove the plugin import from your CKEditor setup:
- import TextshineCKEditor5Plugin from "textshine-ckeditor5-plugin"- Remove
TextshineCKEditor5Pluginfrom the editor'spluginsconfiguration andtextshinefrom itstoolbarconfiguration:
ClassicEditor.create(document.querySelector("#editor"), {
- plugins: [Essentials, Bold, Italic, TextshineCKEditor5Plugin],
+ plugins: [Essentials, Bold, Italic],
toolbar: [
"undo",
"redo",
"bold",
- "italic",
- "textshine"
+ "italic"
]
})Users now start corrections through the Textshine browser extension. The CKEditor toolbar button previously provided by this package is no longer shown.
If your application uses textshine-browser-extension-bridge only for this plugin, that dependency and its integration can also be removed.
