Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@ckeditor/ckeditor5-find-and-replace
Advanced tools
Find and replace feature for CKEditor 5.
@ckeditor/ckeditor5-find-and-replace is a plugin for CKEditor 5 that provides find and replace functionality within the editor. It allows users to search for specific text and replace it with new text, making text editing more efficient.
Find Text
This feature allows users to search for specific text within the editor. The code sample demonstrates how to initialize the CKEditor with the FindAndReplace plugin and execute a search for the term 'searchText'.
ClassicEditor.create(document.querySelector('#editor'), { extraPlugins: [ FindAndReplace ] }).then(editor => { editor.execute('find', 'searchText'); }).catch(error => { console.error(error); });
Replace Text
This feature allows users to replace specific text with new text. The code sample shows how to initialize the CKEditor with the FindAndReplace plugin and execute a replace operation, replacing 'oldText' with 'newText'.
ClassicEditor.create(document.querySelector('#editor'), { extraPlugins: [ FindAndReplace ] }).then(editor => { editor.execute('replace', { searchText: 'oldText', replaceText: 'newText' }); }).catch(error => { console.error(error); });
Find and Replace Dialog
This feature provides a user interface for finding and replacing text. The code sample demonstrates how to initialize the CKEditor with the FindAndReplace plugin and create the find and replace dialog.
ClassicEditor.create(document.querySelector('#editor'), { extraPlugins: [ FindAndReplace ] }).then(editor => { editor.ui.componentFactory.create('findAndReplace'); }).catch(error => { console.error(error); });
This package implements the find and replace feature 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 find and replace feature guide.
See the @ckeditor/ckeditor5-find-and-replace
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
Find and replace feature for CKEditor 5.
The npm package @ckeditor/ckeditor5-find-and-replace receives a total of 141,057 weekly downloads. As such, @ckeditor/ckeditor5-find-and-replace popularity was classified as popular.
We found that @ckeditor/ckeditor5-find-and-replace 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.