Hi,
I would like to know how to tell CKEditor not to convert French accents to HTML entities.
I tried to put this in "Custom javascript configuration" into a profile but it's still changing accents to HTML:
CKEDITOR.config.entities = false;
CKEDITOR.config.entities_latin = false;
I cleared the cache of my browser and of Drupal.
I tried removing CKEDITOR and CKEDITOR.config to get just "entities = false;" or "config.entities = false;"
I am not sure of the syntaxe because I didn't find it anywhere.
I know this works with FCKeditor 6.x-2.0-rc2:
FCKConfig.ProcessHTMLEntities = false;
FCKConfig.IncludeLatinEntities = false;
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | ckeditor-692558.patch | 910 bytes | mephir |
Comments
Comment #1
mephir commentedTemporarily add above code to ckeditor.config.js:
config.entities = false;I fix this bug immediately.
Comment #2
mephir commentedProblems with boolean config values in custom javascript configuration.
Comment #3
mephir commentedHere is a patch.
Comment #4
j0nathan commentedHi,
Patch #3 works with this in "Custom javascript configuration" into a profile:
CKEDITOR.config.entities = false;
CKEDITOR.config.entities_latin = false;
Thank you very much.
Comment #5
mephir commentedChanges commited to cvs.
Comment #7
cihanyilmaz88 commentedHey all,
Where can i put this patch? Please explaint it some more, i am newbie at this work...