Markdown: Image

Image#


Classic syntax#

To define an image, use the following syntax:

  • ![Image_alternative_text](Image_URL)
Markdown HTML Rendering
![I'm an image](/images/favicon.png)
<p> <img src="/images/favicon.png" alt="I'm an image"> </p>
I&rsquo;m an image

To define a link to an image, encapsulate the image in a classic link syntax.

Markdown HTML Rendering
[![I'm an image](/images/favicon.png)](/)
<p> <a href="/"> <img src="/images/favicon.png" alt="I'm an image"> </a> </p>
I&rsquo;m an image