mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 14:00:13 +01:00
26 lines
699 B
Markdown
26 lines
699 B
Markdown
# Images with and without alternate text
|
|
|
|

|
|
|
|
 {MD045}
|
|
|
|

|
|
|
|
 {MD045}
|
|
|
|
Image without alternate text  in a sentence. {MD045}
|
|
|
|
Reference image with alternate text ![Alternate text][notitle]
|
|
|
|
Reference image without alternate text ![][notitle] {MD045}
|
|
|
|
Reference image with alternate text and title ![Alternate text][title]
|
|
|
|
Reference image without alternate text and title ![][title] {MD045}
|
|
|
|
Link to image with alternate text [](image.jpg)
|
|
|
|
Link to image without alternate text [](image.jpg) {MD045}
|
|
|
|
[notitle]: image.jpg
|
|
[title]: image.jpg "Title"
|