Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
quill-paste-smart
Advanced tools
This plugin extends the default clipboard module of Quill.js to prevent users from pasting HTML that does not belong into the editor. To do so it looks into the toolbar configuration and decides which tags and attributes are allowed based on the possible formats.
However, you can also decide on your own, what is allowed.
You can install this plugin either with npm or with yarn.
Run one of the following commands from your projects root in a bash prompt.
npm i quill-paste-smart
# or: yarn add quill-paste-smart
To tell Quill to use this plugin instead of its own clipboard module you need to register it.
import Quill from 'quill';
import PasteSmart from 'quill-paste-smart';
Quill.register('modules/clipboard', PasteSmart, true);
Out of the box this plugin will remove all HTML tags and attributes that are not available in the toolbar formats.
If you don't agree with the default settings, you can decide what is allowed by yourself.
Also I thought it could be useful to keep the pasted content selected after pasting, so there is a setting for it too.
A valid configuration could look like this:
const options = {
theme: 'snow'
modules: {
clipboard: {
allowed: {
tags: ['a', 'b', 'strong', 'u', 's', 'i', 'p', 'br', 'ul', 'ol', 'li', 'span'],
attributes: ['href', 'rel', 'target', 'class']
},
keepSelection: true,
},
},
};
new Quill('#editor', options);
This plugin is licensed under the terms of the MIT License (See LICENSE file for details).
FAQs
Quill Extension to paste only supported HTML
The npm package quill-paste-smart receives a total of 0 weekly downloads. As such, quill-paste-smart popularity was classified as not popular.
We found that quill-paste-smart 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
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.