Image in markdown doesn't display when published

As a temporary solution, it’s still possible to embed images from python:

from IPython.display import Image
Image(filename='image.png')

Images embedded this way are inserted into the notebook outputs in base64 so they don’t depend on any external resources

3 Likes