如何在Github Markdown中并排显示表格?

时间:2017-04-05 13:12:03

标签: github-flavored-markdown

例如,这不起作用,表格已加入:

| Tables   |      Are      |  Cool |             | Tables   |      Are      |  Cool |
|----------|:-------------:|------:|             |----------|:-------------:|------:|
| col 1 is |  left-aligned | $1600 |             | col 1 is |  left-aligned | $1600 |
| col 2 is |    centered   |   $12 |             | col 2 is |    centered   |   $12 |
| col 3 is | right-aligned |    $1 |             

2 个答案:

答案 0 :(得分:12)

文本之间的空格标记特定类型内容的开头和结尾。试试这个:

<table>
<tr><th>Table 1 Heading 1 </th><th>Table 1 Heading 2</th></tr>
<tr><td>

|Table 1| Middle | Table 2|
|--|--|--|
|a| not b|and c |

</td><td>

|b|1|2|3| 
|--|--|--|--|
|a|s|d|f|

</td></tr> </table>

看起来像这样:

two merkdown tables in one html table

答案 1 :(得分:6)

对于GitHub,您可以使用以下格式并排显示两个表格。这是我通常这样做的方式:

|Table 1|Table 2|
|--|--|
|<table> <tr><th>Table 1 Heading 1</th><th>Table 1 Heading 2</th></tr><tr><td>Row 1 Column 1</td><td>Row 1 Column 2</td></tr> </table>| <table> <tr><th>Table 2 Heading 1</th><th>Table 2 Heading 2</th></tr><tr><td>Row 1 Column 1</td><td>Row 1 Column 2</td></tr> </table>|

您可以看到输出here

注意:请不要使用新行,否则无效。