Document getenv template function
authormdhender <mdhender@users.noreply.github.com>
Sun, 5 Apr 2015 01:07:25 +0000 (20:07 -0500)
committerbep <bjorn.erik.pedersen@gmail.com>
Sun, 5 Apr 2015 16:14:40 +0000 (18:14 +0200)
Add `getenv` to the template function documentation.

docs/content/templates/functions.md

index 6dbc58bf778e07bf8d5811933336728442dac116..c380b091b5584659e5569293058e833d89c068f1 100644 (file)
@@ -76,6 +76,19 @@ e.g.
     {{ end }}
 
 
+### getenv
+Returns the value of an environment variable.
+
+Takes a string containing the name of the variable as input. Returns
+an empty string if the variable is not set, otherwise returns the
+value of the variable. Note that in Unix-like environments, the
+variable must also be exported in order to be seen by `hugo`.
+
+e.g.
+
+    {{ getenv "HOME" }}
+
+
 ### in
 Checks if an element is in an array (or slice) and returns a boolean.  The elements supported are strings, integers and floats (only float64 will match as expected).  In addition, it can also check if a substring exists in a string.