chore(docs): standardize "AIBridge" to "AI Bridge" in documentation (#20831)

This commit is contained in:
Atif Ali
2025-11-24 18:09:04 +05:00
committed by GitHub
parent 8c83ab90cf
commit 636408906f
28 changed files with 78 additions and 77 deletions
+1 -1
View File
@@ -239,5 +239,5 @@ func extractSectionName(section []byte) (string, error) {
}
func toMdFilename(sectionName string) string {
return nonAlphanumericRegex.ReplaceAllLiteralString(strings.ToLower(sectionName), "-") + ".md"
return nonAlphanumericRegex.ReplaceAllLiteralString(strings.ReplaceAll(strings.ToLower(sectionName), " ", ""), "-") + ".md"
}