textproc/minify/pkg/DESCR (view raw)
1Minify is a minifier package written in Go. It provides HTML5, CSS3,
2JS, JSON, SVG and XML minifiers and an interface to implement any
3other minifier. Minification is the process of removing bytes from
4a file (such as whitespace) without changing its output and therefore
5shrinking its size and speeding up transmission over the internet
6and possibly parsing. The implemented minifiers are designed for
7high performance. The core functionality associates mimetypes with
8minification functions, allowing embedded resources (like CSS or
9JS within HTML files) to be minified as well. Users can add new
10implementations that are triggered based on a mimetype (or pattern),
11or redirect to an external command.