In TinyMCE, break a blockquote by hitting enter, like in Gmail

Viewed 1099

We're using TinyMCE to create/edit email replies. As part of that, we'd like the ability to break a blockquote by hitting Enter in the middle of it, like you can do in Gmail. There don't appear to be any settings in TinyMCE to allow this. Have I missed it? Or is there a way programmatically to get this functionality?

2 Answers

As of 2019, tinymce 5

Add this to your config:

end_container_on_empty_block: true

Related