mirror of
https://github.com/gohugoio/hugo.git
synced 2025-04-04 07:17:09 +00:00
`eq` and `ne` template functions don't work as expected when those are used with a raw number and a calculated value by add, sub etc. It's caused by both numbers type differences. For example, `eq 5 (add 2 3)` returns `false` because raw 5 is `int` while `add 2 3` returns 5 with `int64` This normalizes `int`, `uint` and `float` type values to `int64`, `uint64` and `float64` before comparing them. Other type of value is passed to comparing function without any changes. Fix #961 |
||
---|---|---|
.. | ||
template.go | ||
template_embedded.go | ||
template_resources.go | ||
template_resources_test.go | ||
template_test.go |