有没有办法在 github markdown 上有“ colspan ”?
我正在尝试创建一个表格,其中一行占四列。
| One | Two | Three | Four |
| ------------- |-------------| ---------| ------------- |
| One | Two | Three | Four |
| One | Two | Three | Four |
| ------------- |-------------| ---------| ------------- |
| Span Across ||||
您可以通过在此处粘贴以上内容来查看实时预览
http://markdown-here.com/livedemo.html
最佳答案
您可以在 GitHub 上使用 HTML 表格(但在 StackOverflow 上使用 not)
<table>
<tr>
<td>One</td>
<td>Two</td>
</tr>
<tr>
<td colspan="2">Three</td>
</tr>
</table>
成为
关于github-flavored-markdown - github Markdown colspan,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23571724/