HtmlCompress
HtmlCompress copied to clipboard
Unable to compress html conditional statements
I have a problem with compressing html with conditional statements included.
Input:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<!--[if IE]>
<h1>Hello World</h1>
<![endif]-->
</body>
</html>
Expected output:
<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body><!--[if IE]><h1>Hello World</h1><![endif]--></body></html>
Actual output:
<html><head> <body> <!--[if IE]>
<h1>Hello World</h1>
<![endif]-->
As you can see - some tags after conditional statement are completely omitted Library is installed with composer
composer require wyrihaximus/html-compress
Just opened #77 to look into and fix this.