mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
716 B
716 B
title, description, categories, keywords, params
| title | description | categories | keywords | params | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| not | Returns the boolean negation of its single argument. |
|
Unlike the and and or operators, the not operator always returns a boolean value.
{{ not true }} → false
{{ not false }} → true
{{ not 1 }} → false
{{ not 0 }} → true
{{ not "x" }} → false
{{ not "" }} → true
Use the not operator, twice in succession, to cast any value to a boolean value. For example:
{{ 42 | not | not }} → true
{{ "" | not | not }} → false
{{% include "/_common/functions/go-template/text-template.md" %}}