github-docs-arabic-enhanced / src /frame /lib /encode-bracketed-parentheses.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
88df9e4 verified
// prevent `[foo] (bar)` strings with a space between from being interpreted as markdown links
// by encoding the space character
export default function encodeBracketedParentheses(input: string): string {
return input.replace(/] \(/g, '] (')
}