The WYSIWYG editor inconsistently removes html tags and otherwise damages the source content, regardless of what HTML sanitizer is being used.
Steps to reproduce the behavior:
<h1>Some code that will be destroyed</h1>
<p>This code will be damaged by the WYSIWYG editor.</p>
<h1>Some code that will be destroyed
</h1>This code will be damaged by the WYSIWYG editor.
Expected HTML code to be retained, and only changed by the sanitizer specified.
If applicable, add screenshots to help explain your problem.
@breezystatic77 Paragraph is created by default in the Markdown editor. So you don't need to create a paragraph using the <p> HTML string, and it's correct that the P tag disappears when converted from WYSIWYG to Markdown. However, the part where the line breaks before and after </h1> seems to be a bug and needs to be fixed.
