mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
// @ts-check
|
|
|
|
"use strict";
|
|
|
|
const { addError, getHtmlAttributeRe, nextLinesRe } = require("../helpers");
|
|
const { getHtmlTagInfo, getDescendantsByType } = require("../helpers/micromark-helpers.cjs");
|
|
const { filterByTypesCached } = require("./cache");
|
|
|
|
const altRe = getHtmlAttributeRe("alt");
|
|
|
|
// eslint-disable-next-line jsdoc/valid-types
|
|
/** @type import("./markdownlint").Rule */
|
|
module.exports = {
|
|
"names": [ "MD045", "no-alt-text" ],
|
|
"description": "Images should have alternate text (alt text)",
|
|
"tags": [ "accessibility", "images" ],
|
|
"parser": "micromark",
|
|
"function": function MD045(params, onError) {
|
|
// Process Markdown images
|
|
const images = filterByTypesCached([ "image" ]);
|
|
for (const image of images) {
|
|
const labelTexts = getDescendantsByType(image, [ "label", "labelText" ]);
|
|
if (labelTexts.some((labelText) => labelText.text.length === 0)) {
|
|
const range = (image.startLine === image.endLine) ?
|
|
[ image.startColumn, image.endColumn - image.startColumn ] :
|
|
undefined;
|
|
addError(
|
|
onError,
|
|
image.startLine,
|
|
undefined,
|
|
undefined,
|
|
range
|
|
);
|
|
}
|
|
}
|
|
|
|
// Process HTML images
|
|
const htmlTexts = filterByTypesCached([ "htmlText" ], true);
|
|
for (const htmlText of htmlTexts) {
|
|
const { startColumn, startLine, text } = htmlText;
|
|
const htmlTagInfo = getHtmlTagInfo(htmlText);
|
|
if (
|
|
htmlTagInfo &&
|
|
!htmlTagInfo.close &&
|
|
(htmlTagInfo.name.toLowerCase() === "img") &&
|
|
!altRe.test(text)
|
|
) {
|
|
const range = [
|
|
startColumn,
|
|
text.replace(nextLinesRe, "").length
|
|
];
|
|
addError(
|
|
onError,
|
|
startLine,
|
|
undefined,
|
|
undefined,
|
|
range
|
|
);
|
|
}
|
|
}
|
|
}
|
|
};
|