mirror of
https://github.com/gohugoio/hugo.git
synced 2025-05-04 01:20:04 +03:00
23 lines
464 B
Markdown
23 lines
464 B
Markdown
---
|
|
title: strings.FirstUpper
|
|
description: Capitalizes the first character of a given string.
|
|
categories: [functions]
|
|
keywords: []
|
|
menu:
|
|
docs:
|
|
parent: functions
|
|
function:
|
|
aliases: []
|
|
returnType: string
|
|
signatures: [strings.FirstUpper STRING]
|
|
relatedFunctions:
|
|
- strings.FirstUpper
|
|
- strings.Title
|
|
- strings.ToLower
|
|
- strings.ToUpper
|
|
aliases: [/functions/strings.firstupper]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ strings.FirstUpper "foo" }} → "Foo"
|
|
```
|