mirror of
https://github.com/tiennm99/hugoDocs.git
synced 2026-09-15 06:20:23 +00:00
These became variadic with https://github.com/gohugoio/hugo/pull/6775
508 B
508 B
title, description, categories, menu, keywords, signature, relatedfuncs
| title | description | categories | menu | keywords | signature | relatedfuncs | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| le | Returns the boolean truth of arg1 <= arg2 && arg1 <= arg3. |
|
|
|
|
{{ le 1 1 }} → true
{{ le 1 2 }} → true
{{ le 2 1 }} → false
{{ le 1 1 1 }} → true
{{ le 1 1 2 }} → true
{{ le 1 2 1 }} → true
{{ le 1 2 2 }} → true
{{ le 2 1 1 }} → false
{{ le 2 1 2 }} → false
{{ le 2 2 1 }} → false