Is there a way to comment multiple lines… which already have some comments in them?
i.e.
<html>
<!-- Multi-line comment begin
<head>
<!-- This script does abcxyz -->
<script>...</script>
</head>
<body>
Hello world!
</body>
Multi-line comment end -->
</html>
It seems that even SO’s syntax hilighting won’t accept this…
I think the key point is this:
http://www.w3.org/TR/html4/intro/sgmltut.html#h-3.2.4
This is not valid markup:
… so neither is the one you mention.
Since all my sites are written in PHP I normally comment out code with PHP comments:
Perhaps you can use a similar trick.