surmon-china / vue-quill-editor

@quilljs editor component for @vuejs(2)
https://github.surmon.me/vue-quill-editor
MIT License
7.38k stars 1.03k forks source link

Blockquote within Blockquote and creating a multiline quoteblock #407

Open hbsoftco opened 4 years ago

hbsoftco commented 4 years ago

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>   
    <p><em><small>Author name</small></em></p>   
    <p>Body of text</p>   
    <blockquote>     
        <p><em><small>Author name</small></em></p>     
        <p>another body of text</p>   
    </blockquote> 
</blockquote> 

Is it possible? What's the best way to achieve this?