Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-12-03all: Format code with gofumptBjørn Erik Pedersen
See https://github.com/mvdan/gofumpt
2020-03-12metrics: Fix --templateMetricsHintsBjørn Erik Pedersen
Also improve non-string comparisons. Fixes #7048
2019-08-12tests: Convert from testify to quicktestBjørn Erik Pedersen
2019-04-02metrics: Adjust the howSimilar logic vs stringsBjørn Erik Pedersen
Also add a test.
2019-04-02tpl: Allow the partial template func to return any typeBjørn Erik Pedersen
This commit adds support for return values in partials. This means that you can now do this and similar: {{ $v := add . 42 }} {{ return $v }} Partials without a `return` statement will be rendered as before. This works for both `partial` and `partialCached`. Fixes #5783
2017-10-07metrics: Reset benchmark timerBjørn Erik Pedersen
2017-10-07metrics: Detect partialCached candidatesBjørn Erik Pedersen
This commit adds a "cache potential" column when running `hugo --templateMetrics --templateMetricsHints`. This is only calculated when `--templateMetricsHints` is set, as these calculations has an negative effect on the other timings. This gives a value for partials only, and is a number between 0-100 that indicates if `partial` can be replaced with `partialCached`. 100 means that all execution of the same partial resulted in the same output. You should do some manual research before going "all cache".
2017-09-26metrics: Fix sort orderBjørn Erik Pedersen
Highest first.
2017-09-26metrics: Add simple template metrics featureCameron Moore