Repeat.md - hugo - [fork] hugo port for 9front
 (HTM) git clone https://git.drkhsh.at/hugo.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
       Repeat.md (363B)
       ---
            1 ---
            2 title: strings.Repeat
            3 description: Returns a new string consisting of zero or more copies of another string.
            4 categories: []
            5 keywords: []
            6 params:
            7   functions_and_methods:
            8     aliases: []
            9     returnType: string
           10     signatures: [strings.Repeat COUNT INPUT]
           11 aliases: [/functions/strings.repeat]
           12 ---
           13 
           14 ```go-html-template
           15 {{ strings.Repeat 3 "yo" }} → yoyoyo
           16 ```