Markdown: Image
Image#
Classic syntax#
To define an image, use the following syntax:
- ![Image_alternative_text](Image_URL)
Markdown | HTML | Rendering |
---|---|---|
| <p>
<img src="/images/favicon.png" alt="I'm an image">
</p> |
Image in a link#
To define a link to an image, encapsulate the image in a classic link syntax.
Markdown | HTML | Rendering |
---|---|---|
| <p>
<a href="/">
<img src="/images/favicon.png" alt="I'm an image">
</a>
</p> |