Skip to content

Commit 32e41aa

Browse files
committed
Configure link checker tool to ignore Chrome App link
The markdown-link-check tool is used to detect broken links in the project's Markdown files. The tool is detecting the link to the Arduino Create Chrome App page in the Chrome Web Store as broken: ERROR: 1 dead links found in ./content/categories/software/chrome-app/_topics/about-the-chrome-app-category/1.md ! [✖] https://chromewebstore.google.com/detail/arduino-create-for-educat/elmgohdonjdampbcgefphnlchgocpaij → Status: 0 task: Failed to run task "markdown:check-links": exit status 1 However, when the link is visited by a human it works as expected. This spurious failure is avoided by adding that URL to the tool's ignore list.
1 parent f54e78b commit 32e41aa

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.markdown-link-check.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
{
1818
"pattern": "^https://cloud\\.arduino\\.cc/cloud$"
1919
},
20+
{
21+
"pattern": "^https://chromewebstore\\.google\\.com/detail/arduino-create-for-educat/elmgohdonjdampbcgefphnlchgocpaij$"
22+
},
2023
{
2124
"pattern": "^https://forum\\.arduino\\.cc/c/community/workshops-and-events/events-and-tour/"
2225
},

0 commit comments

Comments
 (0)