Make First accept any int
authorbep <bjorn.erik.pedersen@gmail.com>
Thu, 9 Oct 2014 22:57:57 +0000 (00:57 +0200)
committerspf13 <steve.francia@gmail.com>
Wed, 15 Oct 2014 16:39:09 +0000 (12:39 -0400)
commitda5d98e958a1e5bf3082b55d5d3ae41ac60f6490
treeab420725174a0c166f4e3498bbd5bf6834a8b7e0
parentd064139cee17959f02fadce3cae97e2238abcb15
Make First accept any int

TOML and YAML handles integers differently, creating issues when using integer values from configuration or front matter in the First template function.

This currently works in YAML (parses into int), but not in TOML (parses into int64).

This commit modifies First so it accepts any int.

Fixes #551
hugolib/template.go
hugolib/template_test.go