mirror of
https://github.com/gohugoio/hugo.git
synced 2024-12-03 05:03:47 -05:00
16 lines
327 B
Markdown
16 lines
327 B
Markdown
---
|
|
title: strings.Repeat
|
|
description: Returns INPUT repeated COUNT times.
|
|
categories: [functions]
|
|
menu:
|
|
docs:
|
|
parent: functions
|
|
keywords: [strings]
|
|
signature: ["strings.Repeat COUNT INPUT"]
|
|
relatedfuncs: []
|
|
---
|
|
|
|
```go-html-template
|
|
{{ strings.Repeat 3 "yo" }} → "yoyoyo"
|
|
{{ "yo" | strings.Repeat 3 }} → "yoyoyo"
|
|
```
|