We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6083412 commit 46496eeCopy full SHA for 46496ee
script/check-github-github-links.js
@@ -112,7 +112,10 @@ async function main() {
112
(contents.substring(numIndex, numIndex + 11) === 'GitHub.help' &&
113
contents.charAt(numIndex + 16) === '#') ||
114
(contents.substring(numIndex, numIndex + 16) === 'GitHub.developer' &&
115
- contents.charAt(numIndex + 26) === '#')
+ contents.charAt(numIndex + 26) === '#') ||
116
+ // See internal issue #2180
117
+ contents.slice(numIndex, numIndex + 'GitHub.help_url}/github/#{'.length) ===
118
+ 'GitHub.help_url}/github/#{'
119
) {
120
return
121
}
0 commit comments