How can I reference an image in GitLab markdown in the current directory with the path starting with ./ dot slash?

前端 未结 5 1659
故里飘歌
故里飘歌 2020-12-25 09:30

I have stored a Markdown file and an image file in a Git repo as follows:

  • readme.markdown
  • images/
    • image.png<
5条回答
  •  梦毁少年i
    2020-12-25 09:43

    My images where in the .bin/img/ folder.
    I had to use below format to get an image:

    ![alt text](<./bin/img/some_image.png>) 
    

    Mind the <>

提交回复
热议问题