Is there a way to make html comments visible in rendered html using css?
This won't work, but something to this effect:
htmlcomments {display: block;}
Would turn:
<p>Hi</p>
<!-- howdy -->
<p>There</p>
Into this:
Hi
Howdy
There
Use case: I'm making markdown documents with inline comments and I'd like to view them with their formatting and also show the comments in the document.
Thanks so much!