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

问题描述 投票:0回答:2

在 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。

image jupyter-notebook escaping markdown
2个回答
5
投票

使用

%20
表示空格,例如:

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

0
投票

%20 编码在我的 GitHub 风格的 markdown 中不起作用。

用尖括号将文件名括起来。

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

Github 示例 498

© www.soinside.com 2019 - 2024. All rights reserved.