You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zk/internal/adapter/handlebars/helpers/list.go

35 lines
648 B
Go

package helpers
import (
"strings"
"github.com/aymerick/raymond"
)
// RegisterList registers a {{list}} template helper which formats a slice of
// strings into a bulleted list.
func RegisterList(supportsUTF8 bool) {
itemify := func(text string) string {
bullet := "-"
if supportsUTF8 {
bullet = "‣"
}
lines := strings.SplitAfter(strings.TrimRight(text, "\n"), "\n")
return " " + bullet + " " + strings.Join(lines, " ")
}
raymond.RegisterHelper("list", func(items []string) string {
res := ""
for _, item := range items {
if item == "" {
continue
}
res += itemify(item) + "\n"
}
return res
})
}