有没有办法将 Github 自述文件视频 link 包装在 table 单元格中?
Is there a way to wrap a Github README video link in a table cell?
我想在 README Markdown 文件的 table 单元格中包装视频 link,例如 this。有什么办法可以做到这一点?
您可以通过使用 HTML 标签 <video>
来实现。
示例:
| Video 1 | Video 2 |
| ------------- | ------------- |
| <video src="https://user-images.githubusercontent.com/13440061/129455220-23fa27a2-c8f0-4953-b291-b4893959d5d9.mp4"> | <video src="https://user-images.githubusercontent.com/13440061/129455220-23fa27a2-c8f0-4953-b291-b4893959d5d9.mp4">|
我想在 README Markdown 文件的 table 单元格中包装视频 link,例如 this。有什么办法可以做到这一点?
您可以通过使用 HTML 标签 <video>
来实现。
示例:
| Video 1 | Video 2 |
| ------------- | ------------- |
| <video src="https://user-images.githubusercontent.com/13440061/129455220-23fa27a2-c8f0-4953-b291-b4893959d5d9.mp4"> | <video src="https://user-images.githubusercontent.com/13440061/129455220-23fa27a2-c8f0-4953-b291-b4893959d5d9.mp4">|