MCPcopy Create free account
hub / github.com/Chat2AnyLLM/code-agent-manager / cleanCatalogNameCell

Function cleanCatalogNameCell

internal/metadata/catalog.go:204–209  ·  view source on GitHub ↗
(cell string)

Source from the content-addressed store, hash-verified

202}
203
204func 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
211func catalogInstallKeyName(name, source string) string {
212 if source == "" {

Callers 1

parseCatalogMarkdownFunction · 0.85

Calls 1

cleanCatalogCellFunction · 0.85

Tested by

no test coverage detected