MCPcopy Create free account
hub / github.com/dropbox/dbxcli / markdownValueList

Function markdownValueList

tools/gen-docs/main.go:271–280  ·  view source on GitHub ↗
(values []string)

Source from the content-addressed store, hash-verified

269}
270
271func markdownValueList(values []string) string {
272 if len(values) == 0 {
273 return "none"
274 }
275 quoted := make([]string, 0, len(values))
276 for _, value := range values {
277 quoted = append(quoted, "`"+value+"`")
278 }
279 return strings.Join(quoted, ", ")
280}

Callers 1

commandMetadataSectionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected