Hi,
In my app, we have some email HTML templates where users can select and add it to the rich text editor, make changes, and send them as email messages.
The issue is that the rich text editor is wrapping pieces of the HTML into the <figure> tag. This adds left margins and breaks HTML-centered items.
How can I disable that?
I've tried to add the code below to the Initialization JavaScript Function but with no luck:
function(options){
options.allowedContent = true;
options.automaticStyleWrap = false;
options.autoParagraph = false;
return options;
Regards,
Rodrigo