MCPcopy Index your code
hub / github.com/ComposioHQ/composio / slug_for

Function slug_for

python/scripts/generate-docs.py:116–118  ·  view source on GitHub ↗

Resolve the URL slug / filename stem (falls back to kebab-case).

(class_name: str)

Source from the content-addressed store, hash-verified

114
115
116def slug_for(class_name: str) -> str:
117 """Resolve the URL slug / filename stem (falls back to kebab-case)."""
118 return SLUG_OVERRIDES.get(class_name, to_kebab_case(class_name))
119
120
121def escape_yaml_string(s: str) -> str:

Callers 2

generate_index_mdxFunction · 0.85
mainFunction · 0.85

Calls 2

to_kebab_caseFunction · 0.85
getMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…