Custom module for Quill.js to calculate word count
var quill = new Quill('#quill-editor', {
modules:{
toolbar: false,
wordCount: {
container: '#counter',
unit: 'word'
}
},
theme: 'snow'
});
Please check out our contributing guidelines.