Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 924 Bytes

md045.md

File metadata and controls

40 lines (26 loc) · 924 Bytes

MD045 - Images should have alternate text (alt text)

Tags: accessibility, images

Aliases: no-alt-text

This rule is triggered when an image is missing alternate text (alt text) information.

Alternate text is commonly specified inline as:

![Alternate text](image.jpg)

Or with reference syntax as:

![Alternate text][ref]

...

[ref]: image.jpg "Optional title"

Or with HTML as:

<img src="image.jpg" alt="Alternate text" />

Guidance for writing alternate text is available from the W3C, Wikipedia, and other locations.

Rationale: Alternate text is important for accessibility and describes the content of an image for people who may not be able to see it.