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 97fe529 commit 159cec9Copy full SHA for 159cec9
tools/checkLinks.ts
@@ -180,6 +180,9 @@ for (const [name, raw] of docFiles) {
180
if (!match.groups) continue;
181
const [page, anchor] = match.groups?.link.split("#") ?? [];
182
if (!validLinks.has(page)) {
183
+ // Automatically ignore links with "image/" as the prefix, since the link checker is not designed to validate images.
184
+ if (page.startsWith("images/")) continue;
185
+
186
ownResults.push({
187
title: `Base url ${chalk.blueBright(page)} does not exist`,
188
startLine: lineNum + 1,
0 commit comments