1
0
mirror of synced 2025-12-19 18:10:59 -05:00
Files
docs/lib/encode-bracketed-parentheses.js
Kevin Heis 8a56437c93 Pretty format (#20352)
* Update prettier flow to include JS

* Run prettier

* ...run prettier
2021-07-14 14:35:01 -07:00

7 lines
237 B
JavaScript

// prevent `[foo] (bar)` strings with a space between from being interpreted as markdown links
// by encoding the space character
export default function encodeBracketedParentheses(input) {
return input.replace(/] \(/g, '] (')
}