Gitthub 降价 Colspan

有没有办法在 Github 减价上设置“ Colspan”?

我试图创建一个表,其中一行占据四列。

| One     | Two        | Three   | Four          |
| ------------- |-------------| ---------| ------------- |
| One                | Two               | Three          | Four                |


| One     | Two        | Three   | Four          |
| ------------- |-------------| ---------| ------------- |
| Span Across ||||

您可以通过粘贴上述内容来看到实时预览 Http://markdown-here.com/livedemo.html

152430 次浏览

可以在 GitHub 上使用 HTML 表(但在 StackOverflow 上使用 没有)

<table>
<tr>
<td>One</td>
<td>Two</td>
</tr>
<tr>
<td colspan="2">Three</td>
</tr>
</table>

变成

HTML table output

没有办法这样做。 要么使用 HTML 表格,要么在多个单元格上放置相同的文本。

像这样:

| Can Reorder | 2nd operation |2nd operation |2nd operation |
| :---: | --- |
|1st operation|Normal Load <br/>Normal Store| Volatile Load <br/>MonitorEnter|Volatile Store<br/> MonitorExit|
|Normal Load <br/> Normal Store| | | No|
|Volatile Load <br/> MonitorEnter| No|No|No|
|Volatile store <br/> MonitorExit| | No|No|

看起来像是

HTML table

我最近也需要做同样的事情,并且很高兴 Colspan 在连续管道上运行良好

MultiMarkdown v4.5

测试了 v4.5(最新的 macport)和 v5.4(最新的自制程序)。不确定为什么它不能在您提供的实时预览站点上工作。

我开始的一个简单测试是:

| Header ||
|--------------|
| 0 | 1 |

使用以下命令:

multimarkdown -t html test.md > test.html

妥协最小解决方案:

| One    | Two | Three | Four    | Five  | Six
| -
| Span <td colspan=3>triple  <td colspan=2>double

因此,可以省略关闭 </td>以获得速度,留下 r 以获得一致性。

http://markdown-here.com/livedemo.html的结果: markdown table with colspan

在 Jupyter Markdown 工作。

更新:

截至2019年,所有二线管道在 Jupyter Markdown 都是强制性的。

| One    | Two | Three | Four    | Five  | Six
|-|-|-|-|-|-
| Span <td colspan=3>triple  <td colspan=2>double

最低限度(不在木星实验室工作) :

One    | Two | Three | Four    | Five  | Six
-|||||-
Span <td colspan=3>triple  <td colspan=2>double

添加 break可以解决您的问题。由于标记不支持太多特性,您可以在单元格中存储多于一条记录。