A11Y: Set role=presentation if alt attr is missing (#18546)

This applies to all images posted that do not have a user description.
This commit is contained in:
Bianca Nenciu
2022-10-12 14:07:37 +03:00
committed by GitHub
parent c707ee714d
commit 33087f0bdf
5 changed files with 27 additions and 15 deletions

View File

@@ -173,6 +173,7 @@ export const DEFAULT_LIST = [
"iframe[allowfullscreen]",
"iframe[allow]",
"img[alt]",
"img[role]",
"img[height]",
"img[title]",
"img[width]",

View File

@@ -253,7 +253,13 @@ function renderImageOrPlayableMedia(tokens, idx, options, env, slf) {
}
}
token.attrs[token.attrIndex("alt")][1] = altSplit.join("|");
const altValue = altSplit.join("|").trim();
if (altValue === "") {
token.attrSet("role", "presentation");
} else {
token.attrSet("alt", altValue);
}
return slf.renderToken(tokens, idx, options);
}