A task list module for the quill editor
npm install quill-task-listAdds a task / todo list to the quill editor. Behaves as the built-in bullet
list.
Includes a toolbar item.
The list items are clickable. A click on an item toggles the item as checked.
1. Require or import the JavaScript and the SASS file in your interwebs page, after the main quill.js.
1. Configure the module when instantiating quill
``javascript`
this.editor = new Quill('#editor', {
modules: {
'toolbar': [ 'task-list' ],
'task-list': true
}
});
and a CheckedTasklistItem` or something.BSD 3-clause (the same one that Quill uses)