mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-29 22:29:56 +02:00
Merge commit 'da16527896d3087585c5e758083ea498dcabc2c3'
This commit is contained in:
@@ -10,7 +10,9 @@ menu:
|
||||
docs:
|
||||
parent: "functions"
|
||||
keywords: [strings,casing]
|
||||
signature: ["lower INPUT"]
|
||||
signature:
|
||||
- "lower INPUT"
|
||||
- "strings.ToLower INPUT"
|
||||
workson: []
|
||||
hugoversion:
|
||||
relatedfuncs: []
|
||||
@@ -18,6 +20,10 @@ deprecated: false
|
||||
aliases: []
|
||||
---
|
||||
|
||||
```
|
||||
{{lower "BatMan"}} → "batman"
|
||||
|
||||
Note that `lower` can be applied in your templates in more than one way:
|
||||
|
||||
```go-html-template
|
||||
{{ lower "BatMan" }} → "batman"
|
||||
{{ "BatMan" | lower }} → "batman"
|
||||
```
|
||||
|
Reference in New Issue
Block a user