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.

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

This results in the following HTML.
<img title="title" alt="text" src="image_url">
