From 012a473e27aee4a8bd6e7e7923d697a6c6b4b82c Mon Sep 17 00:00:00 2001 From: Daniel Fairhead Date: Tue, 9 Sep 2014 14:26:51 +0100 Subject: [PATCH] added "eq" function to docs. --- docs/content/templates/functions.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/content/templates/functions.md b/docs/content/templates/functions.md index 9f17ba8fe..b84a4ff35 100644 --- a/docs/content/templates/functions.md +++ b/docs/content/templates/functions.md @@ -35,6 +35,12 @@ If parameter is set, then echo it. e.g. {{echoParam .Params "project_url" }} +### eq +Return true if the parameters are equal. + +e.g. + {{ if eq .Section "blog" }}current{{ end}}" + ### first Slices an array to only the first X elements.