I’m trying to paste a simple piece of HTML into the HTML editor
<video class="videofile" controls="controls" height="272" poster="poster.jpg" preload="none" tabindex="0" width="480">
<source src="video.mp4" type="video/mp4" />
<source src="video.webm" type="video/webm" />
</video>
However, when I go back to WYSIWYG, it auto-formats it as such:
<p><video class="videofile" controls="controls" height="272" poster="poster.jpg" preload="none" tabindex="0" width="480"> <source src="video.mp4" type="video/mp4"> <source src="video.webm" type="video/webm"> </source></source></video></p>
It’s completely screwed up (note the tags). How can I disable this? I’ve tried setting config.FormatOutput and config.AutoParagraph to be false. Thanks.
I could never find an answer for this issue. I ended up allowing a raw TEXTAREA editor for code entry. Thanks.