mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
52 lines
1.5 KiB
JavaScript
52 lines
1.5 KiB
JavaScript
// @ts-check
|
|
|
|
"use strict";
|
|
|
|
const { addErrorContext, escapeForRegExp, filterTokens } =
|
|
require("../helpers");
|
|
|
|
// eslint-disable-next-line jsdoc/valid-types
|
|
/** @type import("./markdownlint").Rule */
|
|
module.exports = {
|
|
"names": [ "MD042", "no-empty-links" ],
|
|
"description": "No empty links",
|
|
"tags": [ "links" ],
|
|
"function": function MD042(params, onError) {
|
|
filterTokens(params, "inline", function forToken(token) {
|
|
let inLink = false;
|
|
let linkText = "";
|
|
let emptyLink = false;
|
|
for (const child of token.children) {
|
|
if (child.type === "link_open") {
|
|
inLink = true;
|
|
linkText = "";
|
|
for (const attr of child.attrs) {
|
|
if (attr[0] === "href" && (!attr[1] || (attr[1] === "#"))) {
|
|
emptyLink = true;
|
|
}
|
|
}
|
|
} else if (child.type === "link_close") {
|
|
inLink = false;
|
|
if (emptyLink) {
|
|
let context = `[${linkText}]`;
|
|
let range = null;
|
|
const match = child.line.match(
|
|
new RegExp(`${escapeForRegExp(context)}\\((?:|#|<>)\\)`)
|
|
);
|
|
if (match) {
|
|
context = match[0];
|
|
// @ts-ignore
|
|
range = [ match.index + 1, match[0].length ];
|
|
}
|
|
addErrorContext(
|
|
onError, child.lineNumber, context, null, null, range
|
|
);
|
|
emptyLink = false;
|
|
}
|
|
} else if (inLink) {
|
|
linkText += child.content;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
};
|