github markdown colspan
有没有办法让github markdown上的“ colspan ”?
我试图创build一个表,其中一行占用四列。
| One | Two | Three | Four | | ------------- |-------------| ---------| ------------- | | One | Two | Three | Four | | One | Two | Three | Four | | ------------- |-------------| ---------| ------------- | | Span Across ||||
您可以通过在http://markdown-here.com/livedemo.html上面粘贴上述内容来查看实时预览
你可以在GitHub上使用HTML表(但不能在StackOverflow上)
<table> <tr> <td>One</td> <td>Two</td> </tr> <tr> <td colspan="2">Three</td> </tr> </table>
变
你没办法这样做。 可以使用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|
看起来像
我最近还需要做同样的事情,并且很高兴能够用连续的pipe道工作
testingv4.5(最新的macports)和v5.4(最新的自制软件)。 不知道为什么它不适用于您提供的实时预览网站。
我开始的一个简单的testing是:
| Header || |--------------| | 0 | 1 |
使用命令:
multimarkdown -t html test.md > test.html
妥协最低解决scheme:
| One | Two | Three | Four | Five | Six | - | Span <td colspan=3>triple <td colspan=2>double
所以你可以省略closures速度,否则可以保持一致。
来自http://markdown-here.com/livedemo.html的结果:;
在Jupyter Markdown工作。