joakimunge / quill-paste-smart

Quill.js module to paste only supported HTML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Quill Paste Smart

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.


Installation

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

Usage

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

Configuration

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

License

This plugin is licensed under the terms of the MIT License (See LICENSE file for details).

About

Quill.js module to paste only supported HTML

License:MIT License


Languages

Language:JavaScript 100.0%