aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/content/en/functions/strings/Repeat.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/strings/Repeat.md')
-rw-r--r--docs/content/en/functions/strings/Repeat.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/content/en/functions/strings/Repeat.md b/docs/content/en/functions/strings/Repeat.md
new file mode 100644
index 000000000..718f24984
--- /dev/null
+++ b/docs/content/en/functions/strings/Repeat.md
@@ -0,0 +1,20 @@
+---
+title: strings.Repeat
+description: Returns a new string consisting of zero or more copies of another string.
+categories: [functions]
+keywords: []
+menu:
+ docs:
+ parent: functions
+function:
+ aliases: []
+ returnType: string
+ signatures: [strings.Repeat COUNT INPUT]
+relatedFunctions: []
+aliases: [/functions/strings.repeat]
+---
+
+```go-html-template
+{{ strings.Repeat 3 "yo" }} → "yoyoyo"
+{{ "yo" | strings.Repeat 3 }} → "yoyoyo"
+```