I'm not sure where to start with this. The documentation is a little opaque, and I haven't really been able to find good examples.
Basically I want to be able to have a multiline blockquote. The way blockquote works now in quill is that each line break is itself another blockquote.
<blockquote>Author name</blockquote>
<blockquote>Another paragraph</blockquote>
However I want to be able to nest blocks like p and other blockquotes inside
<blockquote>
<em><small>Author name</small></em>
<p>Body of text</p>
<blockquote>
<em><small>Author name</small></em>
<p>another body of text</p>
</blockquote>
</blockquote>
Any pointers or good examples of how this could be accomplished would be appreciated.