TinyMCE: disable automatic tagging

I use TinyMCE in my script to edit the header and footer templates. But TinyMCE automatically adds tags to close them, which I don’t want. for example: end of my header

</nav> <!--end menu--> <!--end header--></header> 

TinyMCE does it

 </nav> <!--end menu--> <!--end header--></header></div></div> 

How can I disable this? I have already tried

 verify_html : false, verify_css_classes : true, cleanup : false, cleanup_on_startup : false, 
+2
html php tinymce
source share
1 answer

Try

 tinyMCE.init({ ... verify_html : false, verify_css_classes : true, cleanup : false, cleanup_on_startup : false, ... }); 
0
source share

All Articles