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

25 lines
482 B
Markdown

---
title: pluralize
linktitle: pluralize
description: Pluralizes the given word according to a set of common English pluralization rules
godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
categories: [functions]
tags: [strings]
signature:
workson: []
hugoversion:
relatedfuncs: []
deprecated: false
aliases: []
---
`pluralize` will pluralize the given word according to a set of common English pluralization rules.
```
{{ "cat" | pluralize }} → "cats"
```