Text Editor - Quill

Your powerful rich text editor. Supports all modern browsers on desktops, tablets and phones. Experience the same consistent behavior and produced HTML across platforms. Read more at https://quilljs.com/.

Show code sample

"use strict";

document.addEventListener("DOMContentLoaded", function () {
    var quillSnow = new Quill("#editor-container", {
        modules: {
            toolbar: "#toolbar-container",
        },
        placeholder: "Compose an epic...",
        theme: "snow", // Specify theme in configuration
    });

    var quillBubble = new Quill("#editorBubble", {
        theme: "bubble", // Specify theme in configuration
    });
});