Markup is shown properly in the HTML view of the RadEditor, but is striped when rendered on the page.
Here is my HTML as shown in the RadEditor:
<p><img alt="the other" src="/PublishingImages/Signing-4730x.jpg" /></p> |
<p>this<br /> |
test</p> |
Note the end tags on BR and IMG, but when the page is rendered I get this:
<p><img alt="the other" src="/PublishingImages/Signing-4730x.jpg"></p> |
<p>this<br> |
test</p> |
For both the img and the br tags the closing / is removed. How can I prevent this from happenging?