Not a huge priority in terms of bugs, but still an annoyance. I need to include some HTML on a page, so tried to include it in source view as:
<code><h1>Example</h1></code>
Unfortunately, when you leave the editor page then return, it converts it to actual HTML like this:
<h1>
<code>Test
</code>
</h1>
Now, there is a workaround by adding <span> tags, but it starts to become a little verbose:
<code><<span>h1</span>>Test<<span>/h1</span>></code>
I suspect this is an issue with the WYSIWYG editor, but is there any way this can be fixed?