voku / HtmlMin

:clamp: HtmlMin: HTML Compressor and Minifier via PHP
MIT License
161 stars 22 forks source link

Deprecated script MIME type not omitted on inline scripts #46

Closed abuyoyo closed 4 years ago

abuyoyo commented 4 years ago

Deprecated MIME type not omitted on inline scripts:

<script type="text/javascript">alert("Hello");</script>

minifies to:

<script type=text/javascript>alert("Hello");</script>

should minify to:

<script>alert("Hello");</script>

https://validator.w3.org/ flags this as

Warning: The type attribute is unnecessary for JavaScript resources.

voku commented 4 years ago

Thanks for the bug report and for the fix. It's fixed in version 4.3.0