1down voteaccepted
For your first issue change this:
text.value = JSON.stringify(quill.root.innerHTML);
to This:
text.value = quill.root.innerHTML;
And will be work correct
2022-10-30 15:48:30
For your first issue change this:
text.value = JSON.stringify(quill.root.innerHTML);
to This:
text.value = quill.root.innerHTML;
And will be work correct