editorjs-text-color-plugin
editorjs-text-color-plugin copied to clipboard
How can I disable the plugin for specific tools?
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 ..
Regards!
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*/
],
},
},
})