The forum operates in read-only mode. Please head to StackOverflow for support.
this line of code strips out:
<li><a href="#" class="facebook"></a></li>
Finaly CKEditor makes it this: <li> </li> Can someone tell me please how to solve this? I use the latest CKEditor 4.4.3 Full edition!
You can't leave the link without text. There has to be something between ></a>
<li><a href="#" class="facebook">something</a></li>
Customer and Community Manager, CKSource Follow us on: Facebook, Twitter, LinkedIn If you think you found a bug in CKEditor, read this!
Its very strange that the Editor just split things that i dont want like this one: <span class="frame-overlay"></span> The editor JUST deletes the complete line.
The tags relate to the text, which you are leaving blank, so CKEditor removes the apprently junk tags. Try adding this to config.js:
CKEDITOR.dtd.$removeEmpty.span = 0;
More on this here...
Thanx for this. This did the job ;)
You can't leave the link
You can't leave the link without text. There has to be something between ></a>
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Very Strange
Its very strange that the Editor just split things that i dont want like this one:
<span class="frame-overlay"></span>
The editor JUST deletes the complete line.
The tags relate to the text,
The tags relate to the text, which you are leaving blank, so CKEditor removes the apprently junk tags. Try adding this to config.js:
More on this here...
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
[SOLVED]
Thanx for this. This did the job ;)