Opened 8 years ago

Closed 8 years ago

#14910 closed New Feature (invalid)

Special Characters

Reported by: sathish Owned by:
Priority: Normal Milestone:
Component: General Version:
Keywords: Cc:

Description

Hi, we are using "CKEditor with Full features". we put in HTML code like '☐' in source view. it is change to the visual section working properly. But, when i change source view it doesn't change to html entities code. And also we are tried below method but, it's not working

CKEDITOR.config.entities = false; CKEDITOR.config.basicEntities = false;

CKEDITOR.config.entities_greek = false; CKEDITOR.config.entities_latin = false;

Change History (1)

comment:1 Changed 8 years ago by Jakub Ś

Resolution: invalid
Status: newclosed

You have missed exactly two settings which matter here: http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-entities_additional and http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-entities_processNumerical.

var editor = CKEDITOR.replace( 'editor1', {
	entities_processNumerical : 'force',
	entities_additional : '#9744'
});

Please note however there is a problem with bigger entities: #14588.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy