Assuming some HTML like this...
<section>
<h1>Some stuff</h1>
<!-- That was some stuff... -->
</section>
I add comment tags around the HTML I want to comment out. I want to comment out everything, but the comment is closed by existing comment.
<!--
<section>
<h1>Some stuff</h1>
<!-- That was some stuff... -->
</section>
-->
What is the best way to handle this scenario without losing all my inline comments.