You are here

function _minify_html_html_comment in Minify 7

Remove HTML comments (not containing IE conditional comments).

1 string reference to '_minify_html_html_comment'
_minify_html in ./minify.module
Helper function to minify HTML

File

./minify.module, line 183

Code

function _minify_html_html_comment($string) {
  return 0 === strpos($string[1], '[') || false !== strpos($string[1], '<![') ? $string[0] : '';
}