How do I display local image in markdown?

后端 未结 18 1914
孤独总比滥情好
孤独总比滥情好 2020-12-12 14:00

Does anyone know how to display a local image in markdown? I don\'t want to setup a webserver for that.

I try the following in markdown, but it doesn\'t work:

18条回答
  •  心在旅途
    2020-12-12 14:46

    I got a solution:

    a) Example Internet:

    ![image info e.g. Alt](URL Internet to Images.jpg "Image Description")
    

    b) Example local Image:

    ![image Info](file:///.jpg "Image Description")
    ![image Info](file:///C:/Users//Pictures/.jpg "Image Description")
    

    TurboByte

提交回复
热议问题