Learn Markdown
  • Introduction
  • About Markdown
  • Titles
  • Links
  • Images
  • Code Blocks
  • Tables
Powered by GitBook
On this page

Was this helpful?

Images

# Inline

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

# Reference

![Alternative text][id]

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.

PreviousLinksNextCode Blocks

Last updated 4 years ago

Was this helpful?