Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@ckeditor/ckeditor5-clipboard
Advanced tools
@ckeditor/ckeditor5-clipboard is a plugin for CKEditor 5 that provides clipboard support, enabling users to cut, copy, and paste content within the editor. It handles various clipboard operations, including pasting plain text, HTML, and rich text content, and integrates seamlessly with other CKEditor 5 plugins.
Basic Clipboard Operations
This code initializes a CKEditor 5 instance with the clipboard plugin enabled, allowing basic cut, copy, and paste operations.
ClassicEditor.create(document.querySelector('#editor'), { plugins: [ Clipboard ] })
Pasting Plain Text
This configuration ensures that only plain text is pasted into the editor, stripping out any HTML or rich text formatting.
ClassicEditor.create(document.querySelector('#editor'), { plugins: [ Clipboard ], clipboard: { plainText: true } })
Handling Custom Paste Events
This example demonstrates how to handle custom paste events by listening to the 'inputTransformation' event, allowing developers to manipulate the pasted content before it is inserted into the editor.
ClassicEditor.create(document.querySelector('#editor'), { plugins: [ Clipboard ] }).then(editor => { editor.plugins.get('Clipboard').on('inputTransformation', (evt, data) => { console.log('Custom paste event:', data); }); });
Quill is a modern WYSIWYG editor built for compatibility and extensibility. It provides clipboard support similar to @ckeditor/ckeditor5-clipboard, allowing users to cut, copy, and paste content. Quill's clipboard module can be customized to handle different types of content and transformations.
TinyMCE is a popular rich text editor that includes comprehensive clipboard support. It allows users to paste content from various sources, including Word and Excel, and provides options to clean up and transform pasted content. TinyMCE's clipboard functionality is comparable to @ckeditor/ckeditor5-clipboard in terms of flexibility and customization.
Draft.js is a JavaScript framework for building rich text editors, developed by Facebook. It includes clipboard support for handling cut, copy, and paste operations. Draft.js allows developers to customize the clipboard behavior and integrate it with other editor features, similar to @ckeditor/ckeditor5-clipboard.
This package implements the clipboard (copy, cut, paste) support for CKEditor 5.
See the @ckeditor/ckeditor5-clipboard
package page in CKEditor 5 documentation.
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.
FAQs
Clipboard integration feature for CKEditor 5.
The npm package @ckeditor/ckeditor5-clipboard receives a total of 263,674 weekly downloads. As such, @ckeditor/ckeditor5-clipboard popularity was classified as popular.
We found that @ckeditor/ckeditor5-clipboard 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.