Open juliaferraioli opened 2 years ago
You're right that an empty alt
seem futile, and I like the first option you provided.
@all-contributors/core What do you think?
You're right that an empty
alt
seem futile, and I like the first option you provided. @all-contributors/core What do you think?
@all-contributors/core I think we can do a fallback value for the alt (maybe the first option or just the name). I'm also thinking to add configuration options for the alt (maybe like contributorsImageAlt
) then we provide some dynamic template options like username, bio, etc.
That's a good idea.
all-contributors-cli
version: v6.20.0node
version: v12.22.12npm
(oryarn
) version: 8.3.0Relevant code or config
format-contributor.js
Problem description:
The image for a contributor has an empty alt text attribute, which looks like it was added in #138 and removed in #218. While best practices for alt-text is to not include it for decorative images, which was the justification for removing it, I contend that profile pictures are not decoration. Profile pictures are part of the contributor's identity -- if they weren't, then there would be no reason for including them in the first place. In my opinion, they fall under the informative images classification under the WC3's WAI. More detail can be found in the WCAG standard itself.
I'd also reference the decision tree, which doesn't lend itself to the conclusion that the profile picture is decorative.
Suggested solution:
That being said, the original implementation didn't add much value beyond the name of the profile user. We have the information, so a more comprehensive alt text string can be composed.
I'm currently using
alt=\"<%= contributor.name %>'s GitHub profile picture\"/>
in my template, but other options exist, such as:or pick your preference.
There is a case to be made that since these images are actually links, then they should adhere to the functional images classification, in which case the alt text should indicate where it is linking. That might look like "Profile picture of contributor linking to {link}", but it also might be better then to only link to their
html_url
and then be able to standardize on "Picture of contributor linking to their GitHub profile".Thoughts?