You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow a template like {{ getenv "FOO" }} to search the user's current environment and bring in the value for $FOO. If FOO is not set or exported, expand to an empty string.
Example:
$ export FOO=world ; hugo
With template:
Hello, {{ getenv "FOO" }}
Outputs:
Hello, world
The text was updated successfully, but these errors were encountered:
Allow a template like
{{ getenv "FOO" }}
to search the user's current environment and bring in the value for $FOO. If FOO is not set or exported, expand to an empty string.Example:
With template:
Outputs:
The text was updated successfully, but these errors were encountered: