在markdown中包含图像时,如何转义文件名中的空格



在Jupyter笔记本中工作,我可以直接在markdown中包含图像,如下所示:

![description](filename.bmp)

如果文件名包含空格,这似乎不起作用:

![description](file name with spaces.bmp)

有没有一种方法可以在直接标记中转义文件名中的空格?以下变体不起作用:

![description]('file name with spaces.bmp')
![description]("file name with spaces.bmp")
![description](file name with spaces.bmp)
![description]('file name with spaces.bmp')
![description]("file name with spaces.bmp")
![description](file_name_with_spaces.bmp)
![description]((file name with spaces.bmp))
![description]({file name with spaces.bmp})

顺便说一句,如果这很重要的话,我在Debian 10上。

对空间使用%20,例如:

![description](file%20name%20with%20spaces.bmp)

相关内容

  • 没有找到相关文章

最新更新