mirror of
https://github.com/mickael-menu/zk
synced 2024-11-15 12:12:56 +00:00
18 lines
378 B
Go
18 lines
378 B
Go
|
package helpers
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
|
||
|
"github.com/aymerick/raymond"
|
||
|
)
|
||
|
|
||
|
// RegisterJoin registers a {{join}} template helper which concatenates list
|
||
|
// items with the given separator.
|
||
|
//
|
||
|
// {{join list ', '}} -> item1, item2, item3
|
||
|
func RegisterJoin() {
|
||
|
raymond.RegisterHelper("join", func(list []string, delimiter string) string {
|
||
|
return strings.Join(list, delimiter)
|
||
|
})
|
||
|
}
|