You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not really, because there's a detail that is easy to miss: there is a whitespace (a newline) between the two spans which makes the browser show 111 222 (notice the space) and not 111222. The result you expect would show the latter, which is not the same!
I did expect that the newline after both </script> tags could be removed though, let me investigate and get back to you!
I'm using
minify
to compress HTML code, but found a small problem!Test HTML:
The result I want to get is:
<script src="111.js"></script><script src="222.js"></script><span>111</span><span>222</span>
But
minify
doesn't do what I want, the output is still:Is there any way to solve this problem?
Thanks!🙂
The text was updated successfully, but these errors were encountered: