discuitnet / discuit

A free and open-source community discussion platform.
https://discuit.net
GNU Affero General Public License v3.0
384 stars 40 forks source link

[FEATURE] Alt text support for image posts #105

Open noClaps opened 3 weeks ago

noClaps commented 3 weeks ago

I think this would be a huge step forward for accessibility, plus being able to add additional context to an image post without having to write it all in the title or in a comment would be really nice to have. The alt text could be set to the alt and title attributes, and also appear as an image caption below the image.

I think the best implementation for this on the frontend would be something like:

<figure>
    <img src="{image source}" alt="{alt text}" title="{alt text}" ... >
    <figcaption>Alt: {alt text}</figcaption>
</figure>