hdoc-tools 0.39.0 → 0.39.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/hdoc-validate.js +0 -4
- package/package.json +1 -1
package/hdoc-validate.js
CHANGED
@@ -508,9 +508,6 @@ const e = require("express");
|
|
508
508
|
errors[htmlFile.relativePath].push(error_message);
|
509
509
|
}
|
510
510
|
} else {
|
511
|
-
if (links[i] === 'http://www.idontexistasawebsite.co.uk') {
|
512
|
-
console.log(`Checking for a dummy link: ${links[i]}`);
|
513
|
-
}
|
514
511
|
messages[htmlFile.relativePath].push(
|
515
512
|
`Link is a properly formatted external URL: ${links[i]}`,
|
516
513
|
);
|
@@ -618,7 +615,6 @@ const e = require("express");
|
|
618
615
|
});
|
619
616
|
|
620
617
|
if (response) {
|
621
|
-
console.log(response);
|
622
618
|
let status = response.status();
|
623
619
|
const contentType = response.headers()['content-type'];
|
624
620
|
|