(cell string)
| 202 | } |
| 203 | |
| 204 | func cleanCatalogNameCell(cell string) (name, source string) { |
| 205 | if match := linkRe.FindStringSubmatch(cell); len(match) == 3 { |
| 206 | source = strings.TrimSpace(match[2]) |
| 207 | } |
| 208 | return cleanCatalogCell(cell), source |
| 209 | } |
| 210 | |
| 211 | func catalogInstallKeyName(name, source string) string { |
| 212 | if source == "" { |
no test coverage detected