NUglify
NUglify copied to clipboard
NUglify is a HTML, JavaScript and CSS minification Library for .NET (fork of AjaxMin + new features)
Please update the CSS optimizations in NUglify to remove the space between `@supports` and the left parenthesis `(`. Instead of `@supports (` it should be `@supports(`. This same optimization may...
Please update the CSS optimizations in NUglify to optimize colors. The shortest methods of including a color in CSS are either with the color name (`red`, `blue`, etc.) or with...
Please update the CSS optimizations in NUglify to remove the percent sign from zero (0) percentages. Instead of `0%` for a value, it should be `0`. This would apply to...
Please update the CSS optimizations in NUglify to user `border:0` instead of `border:none`. They are functionally equivalent. This optimization should apply to the following rules: - border - border-top -...
Please update the CSS optimizations in NUglify to shorten font definitions. - `normal` should always be removed from a `font` declaration, because the `font` CSS declaration always sets `normal` by...
Please update the CSS optimizations in NUglify to reduce top, right, bottom, left (TRBL) declarations. `margin` is an example of a CSS declaration that uses TRBL. - If all four...
XML minification can help by removing whitespace. However on testing using the HTML minifier, tags do not retain their case sensitivity and there is no option to do so (there...
I was getting the following error from Knockout.js. `Error: Cannot find closing comment tag to match: ko if : ` After some trial and error I believe the issue lies...