We've had some issues with CK Editor wiping out empty divs when switching from Source to Normal view on our CK Editor plugin and noticed that the Fully Featured Demo version on CK Editor's home page preserves empty divs, while the Standard Editor removes them.
Example: (To be entered in source view)
<div></div>
<div>Example div</div>
<div></div>
In Standard Editor when switching back to normal view from source, and then back to source changes to:
<p>Example div</p>
But in Fully Featured Editor:
<div> </div>
<div>Example div</div>
<div> </div>
How come Fully Featured Editor seems to preserve them? Is there a config file difference that I'm missing?
Thanks!