I've using CKEditor for updating CMS content on my website. I also using FontAwesome, which includes set of fancy icons, that can be displayed like this
<i class="icon-envelope"></i>
The problem is that CKEditor escapes this i
tag on client side, and I can't see it in source mode.
How can I allow this tag? I have tried with CONFIG.removeFormatTags = ''
, but unfortunately it does not do the job.