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

Jan*_*wig 3 markdown escaping image jupyter-notebook

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

![description](filename.bmp)
Run Code Online (Sandbox Code Playgroud)

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

![description](file name with spaces.bmp)
Run Code Online (Sandbox Code Playgroud)

有没有办法在直接降价中转义文件名中的空格?以下变体不起作用:

![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})
Run Code Online (Sandbox Code Playgroud)

顺便说一句,如果这很重要的话,我使用的是 Debian 10。

Chr*_*ris 5

用于%20空格,例如:

![description](file%20name%20with%20spaces.bmp)
Run Code Online (Sandbox Code Playgroud)