hugo/tpl
Tatsushi Demachi 44cdb37b03 Fix eq and ne tpl function issue
`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
2015-03-09 15:28:31 +01:00
..
template.go Fix eq and ne tpl function issue 2015-03-09 15:28:31 +01:00
template_embedded.go Use $.Paginator in template 2015-02-19 11:36:09 +01:00
template_resources.go GetJson and GetCsv have now variadic URL parts so that you can submit pre or post parts of an URL. The parts will be joined to the final URL. 2015-02-17 12:14:39 -05:00
template_resources_test.go Add --ignoreCache CLI flag with description "Ignores the 2015-02-17 12:14:39 -05:00
template_test.go Fix errors reported by Go Vet 2015-03-06 15:25:19 +01:00