본문 바로가기

Visualization/Jupyter Markdown

[src] How do i display local image in markdown?

Way 1 : Display local image using parenthesis

Create a directory named like 'dirs' and put all the images that will be rendered by the Markdown. For example, put image.png into dirs. To load image.png that was located under the dirs directory before.

 

Note that dirs directory must be located under the same directory of our markdown text file which has .md extension.

![image](dirs/image.png)

 

Way 2 : Use an html tag <img> 

The <img> tag is used to embede an image in an HTML page. The <img> tag creates a holding space for the referenced image.

 

<img src="image.png" alt="image in a pocket" width="500" height="600">

 

 

 

Source from : https://stackoverflow.com/questions/41604263/how-do-i-display-local-image-in-markdown