INNER CODE UNIT · Go

markdownValueList

dropbox/dbxcli · tools/gen-docs/main.go:271

func markdownValueList(values []string) string {
	if len(values) == 0 {
		return "none"
	}
	quoted := make([]string, 0, len(values))
	for _, value := range values {
		quoted = append(quoted, "`"+value+"`")
	}
	return strings.Join(quoted, ", ")
}

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…