#11099 closed Bug (invalid)
A few special characters aren't being encoded
Reported by: | Ryan C | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 3.6.6 |
Keywords: | Cc: |
Description
Seems that the following characters aren't being encoded in CKEditor properly as the don't show any encoding via the source view of the editor (inserted via the insert special characters button):
Ŵ Ŷ ŵ ŷ ‛ ►
Found during testing of CKEditor 3.6.6.1.
Attachments (1)
Change History (3)
Changed 11 years ago by
Attachment: | 2013-11-06_1431.png added |
---|
comment:1 Changed 11 years ago by
Keywords: | encoding character removed |
---|---|
Resolution: | → invalid |
Status: | new → closed |
comment:2 Changed 11 years ago by
Characters you have mentioned are not present in ascii table - http://www.ascii.cl/htmlcodes.htm. This setting enables ASCII entities - http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.entities (http://www.ascii.cl/htmlcodes.htm)
If something is not ascii (and these 4 characters aren't) then you have to use http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.entities_processNumerical
If you want to use latin or greek entities, they have special configuration settings: http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.entities_greek or http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.entities_latin
You can also define manually which entities you want to have encoded http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.entities_additional (you can add these 4 characters here)
There are however 4 basic HTML entities that are controlled (due to their importance) by other setting http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.basicEntities
Please use http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-entities_processNumerical or http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-entities_additional they are the same in CKE3.x and 4.x.
I recommend however upgrading to CKE 4.x.