Plugin Announcement: Rich Text Editor

Update: I was able to comment out some Quill formats, then run the JS in the Toolbox plugin. This allows more granular control, similar to what @devin.fraze posted above. Here’s the code I used if anyone is interested:

var quill = new Quill('#richtext-editor-0', {
    modules: {
        toolbar: [
            'bold', 
             // { 'list': 'bullet' }, 
             // { 'indent': '-1'}, 
             // { 'indent': '+1' }, 
             { 'color': ['black', 'red', 'blue', 'green'] }, 
                 'link', 
                 'clean'
             ]

  },
     formats : [
            "background",
            "bold", 
            "color", 
            "font", 
            "code", 
            "italic", 
            "link", 
            "size", 
            "strike", 
            "script",
            "underline", 
            // “blockquote", 
            "header",
            // “indent", 
            // "list",
            "align", 
            "direction", 
            "code-block", 
            "formula", 
            "image",
            "video"
        ],
 placeholder: 'Enter text here...',
  });

Unfortunately, the editor thinks the input is empty, so I’m working to resolve that issue now.

2 Likes