Is there a method within TinyMCE for Umbraco [Version 4.7] to preserve the inline style element of an anchor tag when modified in the editor?
In this case, we are unable to utilize CSS since the generated HTML is intended for email clients (inline styles are essential) and our clients use a template system to edit emails while maintaining layout consistency.
However, when modifying a link from the default template, the standard anchor tag is created without the inline styles specified in the template - is there a workaround for this issue?
Before editing:
<a target="_blank" href="http://#####.##.##/default.aspx"
style="color: #0a72ca; text-decoration: none;">Item</a>
After editing:
<a target="_blank" href="http://#####.##.##/default.aspx">Item</a>
Any assistance on this matter would be greatly appreciated!