editorjs-text-color-plugin icon indicating copy to clipboard operation
editorjs-text-color-plugin copied to clipboard

How can I disable the plugin for specific tools?

Open UmizDemud opened this issue 1 year ago • 1 comments

Say I am using the quote tool, can I disable coloring of the quotes in a simple manner? Of course I want to keep it for the normal text/heading ..

image

Regards!

UmizDemud avatar Dec 13 '23 01:12 UmizDemud

You can disable it by doing

const editor = new EditorJS({
    tools: {
        someOtherTool: {
            //...
            tunes: [
                /* all other tunes except those you dont want, this can be empty array*/
            ],
        },
    },
})

sebmeister2077 avatar Jan 05 '24 19:01 sebmeister2077