SoftwareDriven.Quill.Blazor is a blazor component with an embedded Quill interface. Quilll is a JavaScript library for WYSIWYG editors. https://quilljs.com
$ dotnet add package SoftwareDriven.Quill.BlazorPerform the following steps to use the component:
Add the following line to your index.html or App.razor:
<script src="_content/SoftwareDriven.Quill.Blazor/js/index.bundle.js"></script>
Insert the editor in your DOM:
<QuillEditor @ref="quill" ConfigJson="@quillConfig" />
The ConfigJson attribute is optional and can be used to setup the constructor options of Quill.js like
the selected theme and the toolbar elements.
Use the reference to the editor to access its API.
Implements nearly all API methods of Quill.js. Refer to: