Quill is a free, open source WYSIWYG editor built for the modern web. With its modular architecture and expressive API you can completely customize it to fulfill your needs.
// <link href="https://cdn.quilljs.com/1.0.3/quill.snow.css" rel="stylesheet">
// <script src="https://cdn.quilljs.com/1.0.3/quill.min.js" type="text/javascript"></script>
var quill = new Quill('#editor', {
modules: {
toolbar: '#toolbar'
},
theme: 'snow'
});
// Open your browser's developer console to try out the API!
Built with