I am trying to insert two pictures side by side in one Markdown cell on a laptop. How I did it:
<img src="pic/scan_concept.png" alt="Drawing" style="width: 250px;"/>
to be able to sort the included image. Can anyone give suggestions on top of this?
Thanks,
JMann's solution did not work for me. But it worked
from IPython.display import HTML, display display(HTML("<table><tr><td><img src='img1'></td><td><img src='img2'></td></tr></table>"))
I took an idea from this laptop
You can create tables using such channels and dashes.
A | B - | -  | 
see table syntax
I found the following works in the Markdown cell:
<tr> <td> <img src="Nordic_trails.jpg" alt="Drawing" style="width: 250px;"/> </td> <td> <img src="Nordic_trails.jpg" alt="Drawing" style="width: 250px;"/> </td> </tr>