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 f2ebb49 commit 36726b1Copy full SHA for 36726b1
.link-checker.js
@@ -25,5 +25,6 @@ module.exports = {
25
ignoreHashesOnExternalPagesMatchingRegex: [
26
// Some hash links are resolved with JS and are therefore difficult to check algorithmically
27
/^https:\/\/html\.spec\.whatwg\.org\/multipage\//,
28
+ 'https://github.com/w3c/aria-practices#code-conformance', // TODO: Remove when #2907 is resolved
29
],
30
};
scripts/link-checker.js
@@ -302,7 +302,7 @@ async function checkLinks() {
302
) {
303
consoleError(
304
`Found broken external link on ${htmlPath}:${lineNumber}:${columnNumber}, ` +
305
- 'hash not found on page'
+ `hash "#${hash}" not found on page`
306
);
307
}
308
0 commit comments