Hello,
I need CKEditor to preserve accents such as á and é. Upon doing some googling, it would seem that changing CKEDITOR.config.entities in _source/entities/plugin.js to false should do the trick:
Alack and alas, the accented characters are still being converted. Any thoughts would be appreciated.
Thanks so much,
Eric
I need CKEditor to preserve accents such as á and é. Upon doing some googling, it would seem that changing CKEDITOR.config.entities in _source/entities/plugin.js to false should do the trick:
CKEDITOR.config.entities = false;
Alack and alas, the accented characters are still being converted. Any thoughts would be appreciated.
Thanks so much,
Eric
Re: accents
Try checking this link for possible solutions.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Re: accents
-Erc
accents
1- the connection file to the db has the following:
$conn->query("SET NAMES 'utf8'");
2- In the config.js of the ckeditor I have added the following lines
3- my webpages are set to:
content="text/html;charset=utf-8"
4- db colation:
utf8_unicode_ci / type MyIsam
/ ghe sofaI've been searching around but no luck. I'd appreciate any help
accents
First, I'm no expert on this, but I *think* that you also have to set your charset in your database connection; I use PDO and "charset=utf8" as one of my config options (this is in addition to your Set Names).
Hopefully this helps!