Redactor plugin to break blockquote (like gmail)
- jQuery 1.9.0 or later
- Redactor 9
Call it in plugins
option like this:
$('#redactor').redactor({
plugins: ['blockquote_break']
});
Converts this
<body>
<blockquote>
This is a comment which has been quoted.
Try it :-) !
</blockquote>
</body>
to
<body>
<blockquote>
This is a comment which has been quoted.
</blockquote>
<br>
<blockquote>
Try it :-) !
</blockquote>
</body>
Copyright (c) 2013 Bilal Budhani