Make sort tpl func accept field/key chaining arg
authorTatsushi Demachi <tdemachi@gmail.com>
Fri, 7 Aug 2015 11:05:18 +0000 (20:05 +0900)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 7 Aug 2015 12:06:06 +0000 (14:06 +0200)
commit153332706a78d387225bc1d9e04bc8270cf49aff
tree840d6342f7a20e700352efa8c624510e0577ff61
parent56534beaf684f374327b6d01be26d15ae41c8985
Make sort tpl func accept field/key chaining arg

'sort' template function used to accept only each element's struct field
name, method name and map key name as its second argument. This extends
it to accept a field/method/key chaining key string like
'Params.foo.bar' as the argument. It evaluates sub elements of each
array or map elements and sorts by them.

Typical use case would be sorting pages by user defined front matter
value. For example, sorting pages by 'Params.foo.bar' is possible by
writing the following template code

    {{ range sort .Data.Pages "Params.foo.bar" }}
        {{ .Content }}
    {{ end }}

It ignores all leading and trailing dots so "Params.foo.bar" can be
written in ".Params.foo.bar"

This also fixes the issue that 'sort' cannot evaluate a pointer value.

Fix #1330
tpl/template_funcs.go
tpl/template_funcs_test.go