Documentation update on Template Where Function for nil
authorBenny Wu <benzwu@gmail.com>
Tue, 11 Aug 2015 02:33:13 +0000 (09:33 +0700)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 13 Aug 2015 21:05:10 +0000 (23:05 +0200)
docs/content/templates/functions.md

index cbb288efa34a0563f2ee31b413ed9efae9ece305..5fe31aaa91b5e74b1bd58121208ba9c83c2cb04e 100644 (file)
@@ -265,6 +265,22 @@ Following operators are now available
        {{ .Content }}
     {{ end }}
 
+### Unset field
+Filter only work for set fields. To check whether a field is set or exist, use operand `nil`.
+
+This can be useful to filter a small amount of pages from a large pool. Instead of set field on all pages, you can set field on required pages only.
+
+Only following operators are available for `nil`
+
+- `=`, `==`, `eq`: True if the given field is not set.
+- `!=`, `<>`, `ne`: True if the given field is set.
+
+e.g.
+
+    {{ range where .Data.Pages ".Params.specialpost" "!=" nil }}
+       {{ .Content }}
+    {{ end }}
+
 
 ## Math