CKEDITOR - turn off html encoding

前端 未结 1 1965
广开言路
广开言路 2020-12-20 14:32

In my CKEDITOR, when I type following letters:

ó \" ... whitespace and more

I am getting the following HTML:

ó &         


        
相关标签:
1条回答
  • 2020-12-20 14:45

    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  ...

    0 讨论(0)
提交回复
热议问题