Bootstrap Quill

-
Pro Component

The Bootstrap Quill is a powerful rich text editor built for compatibility and extensibility.
Keep reading our Bootstrap Quill examples and learn how to use this plugin.


Initialization

JS

In order to use this plugin on your page you will need to include the following script in the “Optional JS” area from the page’s footer:

<script src="../../assets/js/plugins/quill.min.js"></script>

Example

Hello World!

Some initial bold text


<div id="editor">
  <p>Hello World!</p>
  <p>Some initial <strong>bold</strong> text</p>
  <p><br></p>
</div>
var quill = new Quill('#editor', {
  theme: 'snow' // Specify theme in configuration
});