CodeIgniter-Minifyhtml-hooks
CodeIgniter-Minifyhtml-hooks copied to clipboard
Remove html comment
Hi,
Thanks for this great hooks, anyone know how we can modify the regex to remove html comment ?
<!-- comment -->
I find a way like that, waiting a better solution to add this regex on Minify base regex. I do other preg_replace after the first one.
$re = '/<!--(?!<!)[^\[>][\s\S]*?-->/'; $buffer = preg_replace($re, " ", $buffer);