Markdownチュートリアル

Images

Add images to Markdown

Image Syntax

To add an image, add an exclamation mark ! followed by the image URL, and add the alternative text for the image in square brackets.

Markdown syntax for inserting images: ![image alt](image link "image title")

Corresponding HTML code: <img src="image link" alt="image alt" title="image title" />

![Sample image](/images/flower.jpg "flower")

Rendered output:

Sample image

Images with Links

To add a link, wrap the replacement text in square brackets with parentheses, followed by the link.

[![road](/images/road.jpg "road")](https://photock.jp)

Rendered output:

road

This image was found on Photock.