We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 011ecd5 commit ccd4f10Copy full SHA for ccd4f10
_linter/markdownlint/rules/hc002.js
@@ -9,6 +9,10 @@ var glob = require("glob");
9
const path = require('path');
10
// TODO: https://stackoverflow.com/a/2186565
11
const filePaths = glob.sync('content/**/*');
12
+let normPaths = [];
13
+for (var filePath of filePaths) {
14
+ normPaths.push(path.normalize(filePath));
15
+}
16
17
module.exports = {
18
"names": [ "HC002", "no-missing-images" ],
@@ -19,7 +23,7 @@ module.exports = {
19
23
var dir = path.dirname(params.name);
20
24
var imgPath = path.join(dir, token.attrs[0][1]);
21
25
22
- if (!filePaths.includes(imgPath)) {
26
+ if (!normPaths.includes(path.normalize(imgPath))) {
27
addError(onError, token.lineNumber, null, imgPath);
28
}
29
});
0 commit comments