summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/humanize.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/humanize.md')
-rw-r--r--docs/content/en/functions/humanize.md20
1 files changed, 6 insertions, 14 deletions
diff --git a/docs/content/en/functions/humanize.md b/docs/content/en/functions/humanize.md
index 18a087591..6cbd85837 100644
--- a/docs/content/en/functions/humanize.md
+++ b/docs/content/en/functions/humanize.md
@@ -1,29 +1,21 @@
---
title: humanize
-linktitle:
description: Returns the humanized version of an argument with the first letter capitalized.
-date: 2017-02-01
-publishdate: 2017-02-01
-lastmod: 2017-02-01
categories: [functions]
menu:
docs:
- parent: "functions"
+ parent: functions
keywords: [strings,casing]
signature: ["humanize INPUT"]
-workson: []
-hugoversion:
relatedfuncs: [anchorize]
-deprecated: false
-aliases: []
---
If the input is either an int64 value or the string representation of an integer, humanize returns the number with the proper ordinal appended.
-```
-{{humanize "my-first-post"}} → "My first post"
-{{humanize "myCamelPost"}} → "My camel post"
-{{humanize "52"}} → "52nd"
-{{humanize 103}} → "103rd"
+```go-html-template
+{{ humanize "my-first-post" }} → "My first post"
+{{ humanize "myCamelPost" }} → "My camel post"
+{{ humanize "52" }} → "52nd"
+{{ humanize 103 }} → "103rd"
```