I am trying to remove unnecessary Line Comments from html & css. I've Found a regex to remove comments like these:
/* Write your comments here */
but what Im looking for is a regex to Multi Line Comments like these:
<!-- Write your comments here
Second line
third Line
-->
Currently Using this code to remove the single line comments:
<!--[^\[].*-->
Any assistance would be greatly appreciated