# Quill Editor

{% hint style="info" %}
Please refer to [Quill Documentation](https://quilljs.com/docs/quickstart/) to learn about plugin options
{% endhint %}

**Step one**

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

```markup
<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.

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

**Step three**

Add the markup.

```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.

{% hint style="warning" %}
Make sure you place the following script **below** all the pre-requisites mentioned in the Step two above.
{% endhint %}

![](/files/-M4P52pR5hLwJty1SjNU)

```markup
<script>
  var quill = new Quill('#editor', {
    theme: 'snow'
  });
</script>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.pages.revox.io/form-elements/quill-editor.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
