Inserting image into IPython notebook markdown

后端 未结 13 1617
面向向阳花
面向向阳花 2020-12-07 06:51

I am starting to depend heavily on the IPython notebook app to develop and document algorithms. It is awesome; but there is something that seems like it should be possible,

13条回答
  •  我在风中等你
    2020-12-07 07:40

    First make sure you are in markdown edit model in the ipython notebook cell

    This is an alternative way to the method proposed by others :

    ![title](img/picture.png)
    

    It also seems to work if the title is missing:

    ![](img/picture.png)
    

    Note no quotations should be in the path. Not sure if this works for paths with white spaces though!

提交回复
热议问题