I bet someone here knows how to fix this! :)
My HTML code before:
. . .
</div>
<!-- A Comment about Some_New_Thing -->
<div id="Some_New_Thing">
. . .
After running Tidy, I get this:
. . .
</div><!-- A Comment about Some_New_Thing -->
<div id="Some_New_Thing">
. . .
I want to KEEP my comments on their own lines, not have all white space between the comment and whatever proceeds it deleted.
How do I do that?
eo