> For the complete documentation index, see [llms.txt](https://docs.pages.revox.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.pages.revox.io/angular/forms/quill-editor.md).

# Quill Editor

We have added the support for the famous Quill editor for Pages angular. Please refer there documentation here <https://github.com/KillerCodeMonkey/ngx-quill>

## Importing

First import it to your app module or any submodule as you wish

```typescript
import { QuillModule } from 'ngx-quill'
@NgModule({
  imports: [QuillModule,...]
})
export class AppModule(){}
```

## How to use&#x20;

Basic Select with Search

{% tabs %}
{% tab title="HTML" %}

```markup
<quill-editor [style]="{height: '350px'}" placeholder="" ></quill-editor>
```

{% endtab %}
{% endtabs %}
