From 0d9c1a909f9082937ae6c3df509f59c3d2f25192 Mon Sep 17 00:00:00 2001 From: sekyonda <127536312+sekyondaMeta@users.noreply.github.com> Date: Wed, 26 Jul 2023 14:40:58 -0400 Subject: [PATCH] Update markdown_link_check_config.json Adding the "https://www.intel.com/content/www/us/en/developer/articles/news/llama2.html" link to the ignore pattern for the link check file as a workaround for this particular link returning a 403 error. Not an elegant solution but was suggested here: https://github.com/tcort/markdown-link-check/issues/109 Will keep investigating to see if there is a better work around --- scripts/markdown_link_check_config.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/markdown_link_check_config.json b/scripts/markdown_link_check_config.json index c17a7b873..102a44b1a 100644 --- a/scripts/markdown_link_check_config.json +++ b/scripts/markdown_link_check_config.json @@ -19,6 +19,9 @@ }, { "pattern": "^http(s)?://localhost.*" + }, + { + "pattern": "https://www.intel.com/content/www/us/en/developer/articles/news/llama2.html" } ] }