mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
15 lines
309 B
Markdown
15 lines
309 B
Markdown
---
|
|
title: pluralize
|
|
description: Pluralizes the given word according to a set of common English pluralization rules
|
|
categories: [functions]
|
|
menu:
|
|
docs:
|
|
parent: functions
|
|
keywords: [strings]
|
|
signature: ["pluralize INPUT"]
|
|
relatedfuncs: []
|
|
---
|
|
|
|
```go-html-template
|
|
{{ "cat" | pluralize }} → "cats"
|
|
```
|