```

Hello World!

Some initial bold text


``` #### FOR FULL WIDGETS, USE MODULES AS BELOW ``` var quill = new Quill('#editor', { modules: { 'syntax': true, 'toolbar': [ [{ 'font': [] }, { 'size': [] }], [ 'bold', 'italic', 'underline', 'strike' ], [{ 'color': [] }, { 'background': [] }], [{ 'script': 'super' }, { 'script': 'sub' }], [{ 'header': '1' }, { 'header': '2' }, 'blockquote', 'code-block' ], [{ 'list': 'ordered' }, { 'list': 'bullet'}, { 'indent': '-1' }, { 'indent': '+1' }], [ 'direction', { 'align': [] }], [ 'link', 'image', 'video', 'formula' ], [ 'clean' ] ] }, placeholder: 'Type Email Here...', theme: 'snow' }); ``` ### EXTEND QUILL METHODS; ``` quill.isEmpty = function() { if ((this.getContents()['ops'] || []).length !== 1) return false; return this.getText().trim().length === 0 } ``` #### TRIGGER QUILL EVENT; ``` quill.on('text-change', function(delta, source) { console.log('text changed'); }); ```