ckeditor-autocorrect-plugin
ckeditor-autocorrect-plugin copied to clipboard
auto-bullets when editor has Enter.BR mode
when ck editor is configured as enterMode: CKEDITOR.ENTER_BR, the autocorrect plugin doesn't determine when to make bullets. I know ENTER_P is preferred and more correct. Just curious if there's any way to check the enterMode and only do this logic when enterMode is P? (it's a long sad story why I need to use BR mode)
if (parent.getName() !== 'p') return;
I'll give it a try if i have time, and maybe submit a pull request if it works out.
(Great plugin though - very full featured)