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.
` to clear the aligning to left. Also with the addition of `style="margin-right: 1%;"` to the `img` tag of the first you can add spacing between the two.
– Wayne Mar 08 '20 at 18:34