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
'Visualization > Jupyter Markdown' 카테고리의 다른 글
[div] Colored note boxes inside Jupyter Notebooks (0) | 2022.10.25 |
---|---|
[Jupyter] Convert ipynb into pdf (0) | 2022.10.25 |