I'm building a forum app and i want to be able to quote a reply.
I'm trying to figure out of there is a way to include in a blockquote any type of html that that might be included in a reply.
For example
Let's say that there is a reply with the following body
<h1> Title of reply </h1>
<ul>
<li> first item </>
</ul>
Therefore i want to be able to quote the above body as it is.
Currently, i've noticed that when i try to insert a block level html tag into a blockquote in quill editor like
var editor = document.querySelector('ql-editor');
editor.innerHTML = <h1> some random text </h1>
The quill editor doesn't display it. Probably it is rejected and it only accepts inline elements