Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-03-17 | all: gofmt -w -r 'interface{} -> any' . | Bjørn Erik Pedersen | |
Updates #9687 | |||
2020-12-16 | all: Fix minor typos | Phil Davis | |
2020-12-03 | all: Format code with gofumpt | Bjørn Erik Pedersen | |
See https://github.com/mvdan/gofumpt | |||
2020-06-14 | Fix aliases with relativeURLs | Helder Pereira | |
2019-08-06 | transform/urlreplacers: Cache the next position of `urlreplacer.prefix` | HyeonGyu Lee | |
Improved performance due to `bytes.Index` repeated calls Fixes #5942 | |||
2019-03-24 | all: Apply staticcheck recommendations | Bjørn Erik Pedersen | |
2019-03-23 | Run gofmt -s | Bjørn Erik Pedersen | |
2019-02-26 | Rewrite relative action URLS | Berin Larson | |
Fixes #5701 | |||
2018-12-17 | transform/urlreplacers: Simplify implementation | Bjørn Erik Pedersen | |
2018-12-17 | transform/urlreplacers: Support unquoted URLs in canonifyURLs replacer | Bjørn Erik Pedersen | |
Fixes #5529 | |||
2018-08-06 | Add support for minification of final output | Bjørn Erik Pedersen | |
Hugo Pipes added minification support for resources fetched via ´resources.Get` and similar. This also adds support for minification of the final output for supported output formats: HTML, XML, SVG, CSS, JavaScript, JSON. To enable, run Hugo with the `--minify` flag: ```bash hugo --minify ``` This commit is also a major spring cleaning of the `transform` package to allow the new minification step fit into that processing chain. Fixes #1251 |