diff --git a/docs/index.md b/docs/index.md index e47a6a7..78974b8 100644 --- a/docs/index.md +++ b/docs/index.md @@ -16,4 +16,4 @@ We host DevCoP presentations throughout the year (excluding July and August). Yo ## Get Involved -Use this form to submit a DevCoP topic idea or offer to present at an upcoming DevCoP [link](https://forms.office.com/r/kutUxZqfLx) +[Use this form to submit a DevCoP topic idea or offer to present at an upcoming DevCoP](https://forms.office.com/r/kutUxZqfLx) diff --git a/link-check.js b/link-check.js index a47189e..ff3095f 100644 --- a/link-check.js +++ b/link-check.js @@ -8,11 +8,10 @@ const directories = ["./docs"]; //Includes partial Urls that need credentials //Included https://www.coalfire.com/ as an exception because axios 1.1.2 gives an error: incorrect header check //https://www.deque.com/axe only accessible thru the browser? -const exceptionSyntax = ["https://014gc.sharepoint.com", "http://dialogue", "https://dialogue", "https://architecture/", "http://srmis-sigdi-iagent.prv/", "https://jade-repos.intra.dev/", "https://ado.intra.dmz/", "http://web-stats.prv/", "https://www.coalfire.com/", "https://www.deque.com/axe", "https://www.canada.ca/etc/designs/canada/cdts/gcweb/rn/cdts/compiled/wet-"]; +const exceptionSyntax = ["https://forms.office.com", "https://www.microfocus.com", "https://014gc.sharepoint.com", "http://dialogue", "https://dialogue", "https://architecture/", "http://srmis-sigdi-iagent.prv/", "https://jade-repos.intra.dev/", "https://ado.intra.dmz/", "http://web-stats.prv/", "https://www.coalfire.com/", "https://www.deque.com/axe", "https://www.canada.ca/etc/designs/canada/cdts/gcweb/rn/cdts/compiled/wet-"]; //Includes non-HTTPS Urls internal to the dept const exceptionHTTP = ["http://dialogue", "https://dialogue", "http://srmis-sigdi-iagent.prv/", "http://web-stats.prv/"]; //Includes Urls that need credentials const exceptionIntranet = ["https://jade-repos.intra.dev/", "https://web.microsoftstream.com/", "https://ado.intra.dmz/", "https://service.ssc-spc.gc.ca/", "https://gccode.ssc-spc.gc.ca/"]; testFileLinks(directories, exceptionSyntax, exceptionHTTP, exceptionIntranet); -