CodeIgniter-Minifyhtml-hooks icon indicating copy to clipboard operation
CodeIgniter-Minifyhtml-hooks copied to clipboard

Remove html comment

Open wobility opened this issue 5 years ago • 1 comments

Hi,

Thanks for this great hooks, anyone know how we can modify the regex to remove html comment ?

<!-- comment -->

wobility avatar Sep 11 '20 07:09 wobility

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);

wobility avatar Sep 11 '20 09:09 wobility