问题
There is a useful Python solution here to put two images side by side in the notebook, but is there a language agnostic way that does the trick using only Jupyter's own markdown? Something like
 # insert magic here # 
that displays the images side by side?
This would be useful in my case cause I would prefer not to break a markdown cell into two and put code in between, but I also would find this helpful in case the notebook is not running Python. I personally run Julia quite a lot.
回答1:
A possible solution would be using img tags with the same align attribute:
<img src="path/to/image1" align="left"/><img src="path/to/image2" align="left"/>
来源:https://stackoverflow.com/questions/50025858/is-there-a-pure-markdown-way-to-include-two-images-side-by-side-in-jupyter