searchturbine / phpwee-php-minifier

Open-source (BSD) PHP inline minifier functions for HTML, XHTML, HTML5, CSS 1-3 and Javascript. http://searchturbine.com/php/phpwee
Other
79 stars 46 forks source link

Html minify removes styles tag content #14

Open Knaackee opened 8 years ago

Knaackee commented 8 years ago

Ive tested phpwee today and noticed that after using

\PHPWee\Minify::html('<html><body><style>.my-class { color: black; }</style></body>')

i got

<html><body><style></style></body></html>

as a result.

Any ideas?

jpdevries commented 8 years ago

I am experiencing this issue with this source code as well https://gist.github.com/jpdevries/b7c3fef54cfffd561ec1

bummer!

rolandtoth commented 7 years ago

Just for the reference, adding the attribute data-no-min will skip the given HTML element.