Is there a way to get TinyMCE V4 to not remove tags.
tinymce.init({ selector: \'textarea.tinymce\', theme: \'modern\', p
You can use TinyMCE's valid_children option for that:
valid_children
valid_children : '+body[style]',
Check this fiddle for a complete example.
The valid_children enables you to control what child elements can exists within specified parent elements.