mirror of
https://github.com/gohugoio/hugo.git
synced 2026-09-03 20:22:38 +00:00
ce60bb5729
* Document string manipulation functions * Document crypto.FNV32a function * Document functions duration and time.ParseDuration * Changes according to review feedback
561 B
561 B
title, linktitle, description, date, publishdate, lastmod, categories, menu, keywords, signature, workson, hugoversion, relatedfuncs, deprecated, aliases
| title | linktitle | description | date | publishdate | lastmod | categories | menu | keywords | signature | workson | hugoversion | relatedfuncs | deprecated | aliases | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| lower | lower | Converts all characters in the provided string to lowercase. | 2017-02-01 | 2017-02-01 | 2017-02-01 |
|
|
|
|
false |
Note that lower can be applied in your templates in more than one way:
{{ lower "BatMan" }} → "batman"
{{ "BatMan" | lower }} → "batman"