Original HTML code:
turns into this:
So there are 2 things that were changed:
WHY? Am i missing something?
<div> abc <br /> </div> <br class="cl"> <!-- CKEDITOR automatically generated text, do not remove -->
turns into this:
<div> abc</div> <!-- CKEDITOR automatically generated text, do not remove --><br class="cl" />
So there are 2 things that were changed:
- Disapearing of first br tag
- the second br tag was moved to the end of the HTML, after the comments
WHY? Am i missing something?