Is there any way to quilljs to change how setting fonts are handled. I want font be set document level instead of element level, so full text have the same font, I could find any way to do it. I tried to do using text-change event but it was not triggered when font is set.
quill.on('text-change', function(delta, oldDelta, source) {
console.log('font changed');
})