Custom module for Quill.js to allow mentions.
To use mentions, initiate a quill editor and add the mentions
when defining your quill modules
.
var users = [{
id: 11,
fullName: 'Aron Hunt',
username: 'aronhunt'
},
{
label: 23,
fullName: 'Bobby Johnson',
username: 'bobbyjohnson'
},
{
label: 58,
fullName: 'Dennis',
username: 'dennis'
}
]
var quill = new Quill('#quill-editor', {
modules:{
mentions: {
users: users
}
},
theme: 'snow'
});