在 Jupyter 笔记本中工作,我可以直接在 Markdown 中包含图像,如下所示:
![description](filename.bmp)
如果文件名包含空格,这似乎不起作用:
![description](file name with spaces.bmp)
有没有办法在直接 Markdown 中转义文件名中的空格?以下变体不起作用:
![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 编码在我的 GitHub 风格的 markdown 中不起作用。
用尖括号将文件名括起来。
![description](<file name with spaces.bmp>)