Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CKEDITOR - turn off html encoding

In my CKEDITOR, when I type following letters:

ó " ... whitespace and more

I am getting the following HTML:

ó „ …   and so on...

How can I turn this off, so that the server will receive "normal" letters?

like image 293
ojek Avatar asked Dec 17 '13 22:12

ojek


1 Answers

I managed to reduce the number of characters converted by adding this to my config file:

config.htmlEncodeOutput = false;
config.entities = false;

But whitespaces are still being converted into  ...

like image 194
ojek Avatar answered Nov 02 '22 07:11

ojek