I am working on Ruby on Rails. TinyMCE converts my HTML tags like:
<span>Hi</span>
to:
"<span>Hi</span>"
config/tinymce.yml
menubar: false
toolbar:
- bold italic underline | undo redo
plugins:
- table
- image
- link
forced_root_block: ""
force_br_newlines : true
force_p_newlines : false
I have tried setting encoding: false in config/tinymce.yml but it isn't working.
I don't know what setting to change. I read here: https://www.tinymce.com/docs/configure/content-filtering/#encoding that encoding is disabled by default but still it is encoding for me.
Can anyone point the problem!