mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
25 lines
661 B
Markdown
25 lines
661 B
Markdown
![]() |
This rule is triggered when an image is missing alternate text (alt text) information.
|
||
|
|
||
|
Alternate text is commonly specified inline as:
|
||
|
|
||
|
```markdown
|
||
|

|
||
|
```
|
||
|
|
||
|
Or with reference syntax as:
|
||
|
|
||
|
```markdown
|
||
|
![Alternate text][ref]
|
||
|
|
||
|
...
|
||
|
|
||
|
[ref]: image.jpg "Optional title"
|
||
|
```
|
||
|
|
||
|
Guidance for writing alternate text is available from the [W3C](https://www.w3.org/WAI/alt/),
|
||
|
[Wikipedia](https://en.wikipedia.org/wiki/Alt_attribute), and
|
||
|
[other locations](https://www.phase2technology.com/blog/no-more-excuses).
|
||
|
|
||
|
Rationale: Alternate text is important for accessibility and describes the
|
||
|
content of an image for people who may not be able to see it.
|