For the complete documentation index, see llms.txt. This page is also available as Markdown.

Quill Editor

Please refer to Quill Documentation to learn about plugin options

Step one

Include the stylesheet quill.snow.css inside the <head>

<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">

Step two

Include the javascript file inside the <body>before core template script inclusions.

<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>

Step three

Add the markup.

<div id="editor">
  <p>Hello World!</p>
  <p>Some initial <strong>bold</strong> text</p>
  <p><br></p>
</div>

Step four

Apply the plugin.

Last updated