NUglify icon indicating copy to clipboard operation
NUglify copied to clipboard

NUglify is a HTML, JavaScript and CSS minification Library for .NET (fork of AjaxMin + new features)

Results 84 NUglify issues
Sort by recently updated
recently updated
newest added

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...

enhancement
PR Welcome!

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...

enhancement
PR Welcome!

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...

enhancement
PR Welcome!

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 -...

enhancement

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...

enhancement
PR Welcome!

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...

enhancement
PR Welcome!

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...

enhancement
PR Welcome!

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...

bug
PR Welcome!