### 1. Why so far(2018-8-26) [Quill document](https://quilljs.com/) didn't say anything about what is the correct / suggest way to store and display content from quill editor ### 2. Base on my current understanding There are 2 way to **store and then display content** when using quill editor to write content. 1. (Delta) __Store__ Delta into database (MySQL/PostgreSQL as JSON). then, when __Display__, use some library convert Delta to HTML and then display 2. (HTML) __Store__ HTML using `quill.root.innerHTML` into database (MySQL/PostgreSQL) and then just __Display__ these HTML ### 3. Question Would you guys write about this topic (store&display) in document? ### Thanks! (I am still researching, If I find any new info helpful for this. I would update this issue) ### 4. info relate to this topic https://www.bountysource.com/issues/37978100-render-quill-delta-without-instantiating-an-editor https://github.com/quilljs/quill/issues/993 https://github.com/quilljs/quill/issues/1551