How disable html entities from TinyMCE editor plugin, please?
I replaced this code: entity_encoding : 'named' with entity_encoding : 'raw' in two files.
editors/tinymce/tiny_mce.js
editors/tinymce/tiny_mce_src.js, but without efect.
How disable html entities from TinyMCE editor plugin, please?
I replaced this code: entity_encoding : 'named' with entity_encoding : 'raw' in two files.
editors/tinymce/tiny_mce.js
editors/tinymce/tiny_mce_src.js, but without efect.
JardaR
Result:
editors/tinymce.php
this code
replace withCode:theme : "advanced", width : "100%", height : "460",
Code:theme : "advanced", entity_encoding : "raw", width : "100%", height : "460",
JardaR