Code below brokes when minified. Html conditional comments in two comment tags (opening and closing) not working.
Example of not supported html :
<!--[if !IE]><!-->
<html lang="fr">
<!--<![endif]-->
More complex example:
<!DOCTYPE html>
<!--[if IE 8]> <html lang="fr" class="ie8"> <![endif]-->
<!--[if IE 9]> <html lang="fr" class="ie9"> <![endif]-->
<!--[if !IE]><!-->
<html lang="fr">
<!--<![endif]-->
....