Files
hugoDocs/content/functions/lower.md
T
2017-02-26 19:27:05 -06:00

24 lines
424 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]
signature:
workson: []
hugoversion:
relatedfuncs: []
deprecated: false
aliases: []
---
`lower` converts all characters in the provided string to lowercase.
```
{{lower "BatMan"}} → "batman"
```