如何在 README.md 中插入幻灯片
How to insert slide in README.md
我想在 README.md
的滑块中插入图像
我插入了一张这样的图片
![image-name](image-url)
There is no way to display a slideshow in Github Flavored Markdown.
如果你想显示多张图片又不想让你的 README 过长,你可以使用 <details>
标签:
<details>
<summary>The title of the image group</summary><details>
<img src="image-url" name="image-name">
<img src="image-url" name="image-name">
<img src="image-url" name="image-name">
</details>
图像将分组在一个小部件中,单击该小部件可以显示或隐藏其中的内容:
我想在 README.md
的滑块中插入图像我插入了一张这样的图片
![image-name](image-url)
There is no way to display a slideshow in Github Flavored Markdown.
如果你想显示多张图片又不想让你的 README 过长,你可以使用 <details>
标签:
<details>
<summary>The title of the image group</summary><details>
<img src="image-url" name="image-name">
<img src="image-url" name="image-name">
<img src="image-url" name="image-name">
</details>
图像将分组在一个小部件中,单击该小部件可以显示或隐藏其中的内容: