I need to remove several thousand comments from an HTML document. The comments are in this form (multi-line):
<p>some HTML</p>
<!--
FOO
BAR
BLAH
-->
<p>more HTML</p>
What regular expression can I use in a find/replace to return this result:
<p>some HTML</p>
<p>more HTML</p>