You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@ckeditor/ckeditor5-find-and-replace

Package Overview
Dependencies
3
Maintainers
0
Versions
497
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-find-and-replace

Find and replace feature for CKEditor 5.


Version published
Weekly downloads
121K
decreased by-15.41%
Maintainers
0
Created
Weekly downloads
 

Package description

What is @ckeditor/ckeditor5-find-and-replace?

@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.

What are @ckeditor/ckeditor5-find-and-replace's main functionalities?

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); });

Other packages similar to @ckeditor/ckeditor5-find-and-replace

Readme

Source

CKEditor 5 find and replace feature

npm version Coverage Status Build Status

This package implements the find and replace feature for CKEditor 5.

Demo

Check out the demo in the find and replace feature guide.

Documentation

See the @ckeditor/ckeditor5-find-and-replace package page in CKEditor 5 documentation.

Installation

npm install ckeditor5

License

Licensed under the terms of GNU General Public License Version 2 or later. For full details about the license, please check the LICENSE.md file or https://ckeditor.com/legal/ckeditor-oss-license.

Keywords

FAQs

Package last updated on 26 Jun 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc