hugo/tpl
Tatsushi Demachi 56534beaf6 Fix sort tpl func to return explicit type value
sort template function returns `[]interface{}` type slice value
regardless of its original element type.

This fixes it to keep the original element type. For example, if it
sorts `map[string]int` type value, it returns `[]int` slice value
instead of `[]interface{}` slice value.
2015-08-07 14:06:06 +02:00
..
template.go On error, return error message, not nil 2015-07-20 14:49:21 +02:00
template_embedded.go
template_funcs.go Fix sort tpl func to return explicit type value 2015-08-07 14:06:06 +02:00
template_funcs_test.go Fix sort tpl func to return explicit type value 2015-08-07 14:06:06 +02:00
template_resources.go Add missing formatting directive in Printf call 2015-08-06 22:46:35 +02:00
template_resources_test.go
template_test.go