Quill editor is a great tool, I used it for my WonderChoice project, but I had a problem with Firefox : all spaces disappeared as you typed. To fix that, just type in your CSS the code below to overwrite the original Quill CSS :
.ql-editor {
white-space: pre-wrap!important;
}
The !important could be optional.
Hope it helps.