Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
180
rated 0 times [  186] [ 6]  / answers: 1 / hits: 15901  / 11 Years ago, thu, november 14, 2013, 12:00:00

I guess I've read most of the SO questions and CKEditor documentation about this, but it does not work for me.



It should be plain and simple, in my CKEditor config.js, I have this :



CKEDITOR.editorConfig = function(config) {
config.allowedContent = true;
};


But the html is still filtered and this piece of code is being stripped :



<p>
<a href=/site/public/press.pdf><span class=icon-presseFile></span></a>
<a href=/site/public/pics.zip><span class=icon-pressePics></span></a>
</p>


into this :



<p>&nbsp;</p>


The <span> elements are font icons.



Any help would be greatly appreciated.



EDIT
It works if I add some text in the <span> elements (but I don't want tohave to do that)


More From » ckeditor

 Answers
42

I found that I had to add it OUTSIDE of the main config function.



This worked:



CKEDITOR.editorConfig = function( config ) {
...
};
CKEDITOR.config.allowedContent = true;


But this didn't:



CKEDITOR.editorConfig = function( config ) {
config.allowedContent = true;
...
};

[#74291] Wednesday, November 13, 2013, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
alfonsok

Total Points: 386
Total Questions: 101
Total Answers: 90

Location: Puerto Rico
Member since Sun, Jun 27, 2021
3 Years ago
;