How to force CKEditor to use HTML Numbers instead of special Characters -
how can force ckeditor automatically convert special characters html numbers?
for example when write 6%
in editor , @ source code <p>6%</p>
want in source <p>6%</p>
is possible?
thanks
check option config.entities
, other entities_*
options. using them, can configure editor produce entities nbsp
, gt
, lt
, amp
. possible switch off (check config.basicentities
), may causes issues noted in docs.
Comments
Post a Comment