Skip to content

Files

Latest commit

0ab6f7f · Nov 24, 2020

History

History
17 lines (11 loc) · 453 Bytes

images.md

File metadata and controls

17 lines (11 loc) · 453 Bytes

Images

# Inline

![Alternative text](/path/to/img.jpg "Optional title")

# Reference

![Alternative text][id]
[id]: url/to/image "Optional title"

As you may have noticed, images in Markdown are very similar to links. The difference is that:

  • the square brackets must be prefixed with an exclamation mark and
  • inside they may have some alternative text. A description of the image, which is displayed if the image can't be loaded.