Make 'where' template function accepts dot chaining key argument
authorTatsushi Demachi <tdemachi@gmail.com>
Mon, 29 Dec 2014 02:33:12 +0000 (11:33 +0900)
committerbep <bjorn.erik.pedersen@gmail.com>
Mon, 29 Dec 2014 11:53:41 +0000 (12:53 +0100)
commitfa8ac87d5edfe3435e21579d19e86bba3be2089c
treedfe16b1765a53352166393479bd709f0f264bc4f
parentdd5bc0345ba8f219e45e6c0994311eb98c6cf479
Make 'where' template function accepts dot chaining key argument

'where' 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 dot chaining key like 'Params.foo.bar' as the
argument. It evaluates sub elements of each array elements and checks it
matches the third argument value.

Typical use case would be for filtering Pages by user defined front
matter value. For example, to filter pages which have 'Params.foo.bar'
and its value is 'baz', it is used like

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

It ignores all leading and trailing dots so it can also be used with
".Params.foo.bar"
docs/content/templates/functions.md
tpl/template.go
tpl/template_test.go