(values []string)
| 269 | } |
| 270 | |
| 271 | func 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 | } |
no outgoing calls
no test coverage detected