mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-10-12 22:20:46 -04:00
25 lines
444 B
Markdown
25 lines
444 B
Markdown
---
|
|
title: lower
|
|
linktitle: lower
|
|
description: Converts all characters in the provided string to lowercase.
|
|
godocref:
|
|
date: 2017-02-01
|
|
publishdate: 2017-02-01
|
|
lastmod: 2017-02-01
|
|
categories: [functions]
|
|
tags: [strings,casing]
|
|
ns:
|
|
signature: ["lower INPUT"]
|
|
workson: []
|
|
hugoversion:
|
|
relatedfuncs: []
|
|
deprecated: false
|
|
aliases: []
|
|
---
|
|
|
|
`lower` converts all characters in the provided string to lowercase.
|
|
|
|
```
|
|
{{lower "BatMan"}} → "batman"
|
|
```
|