Rabikant Singh

Posted on November 15th

How to add a image in markdown

"In this blog we will learn how to add a image in markdown."

What is Markdown?

Markdown is a markup language with plain-text formating syntax.its enable users to write easy-to-read and easy-to-write plain text format, then it to valid HTML.

Replace text with a description of a image, image_url with actual url of the image,and you can add an tittle for the image.

![text](image_url "title")

If the image is stored locally,provide the path of the image in image_url.

![text](path/to/image.png "title")

This results in the following HTML.

<img title="title" alt="text" src="image_url">

Comments

Leave a comment.

Share your thoughts or ask a question to be added in the loop.