web-dev-qa-db-ja.com

Github 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 |             
13
igorludi

テキスト間のスペースは、特定のタイプのコンテンツの開始と終了を示します。これを試して:

<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

16
spacepickle

GitHubの場合、以下の形式を使用して2つのテーブルを並べて表示できます。これは私が通常行う方法です:

|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>|

あなたは出力を見ることができます ここ

注:改行は使用しないでください。使用しないと機能しません。

6
Jagrut