зеркало из https://github.com/github/docs.git
7 строки
243 B
JavaScript
7 строки
243 B
JavaScript
|
// prevent `[foo] (bar)` strings with a space between from being interpreted as markdown links
|
||
|
// by encoding the space character
|
||
|
|
||
|
module.exports = function encodeBracketedParentheticals (input) {
|
||
|
return input.replace(/] \(/g, '] (')
|
||
|
}
|