如何写一个markdown表内的列表?

是否可以创build一个列表(子弹,编号或不)在一个降价表内。

一个表如下所示:

| Tables | Are | Cool | | ------------- |:-------------:| -----:| | col 3 is | right-aligned | $1600 | | col 2 is | centered | $12 | | zebra stripes | are neat | $1 | 

一个列表看起来像这样:

 * one * two * three 

我可以以某种方式合并它们吗?

是的,你可以使用HTML合并它们。 当我从Github创build.md文件中的表时,我总是喜欢使用HTML代码而不是markdown。

Github Flavored Markdown支持.md文件中的基本HTML。 所以这将是答案:

Markdown与HTML混合在一起:

 | Tables | Are | Cool | | ------------- |:-------------:| -----:| | col 3 is | right-aligned | $1600 | | col 2 is | centered | $12 | | zebra stripes | are neat | $1 | | <ul><li>item1</li><li>item2</li></ul>| See the list | from the first column| 

或纯HTML:

 <table> <tbody> <tr> <th>Tables</th> <th align="center">Are</th> <th align="right">Cool</th> </tr> <tr> <td>col 3 is</td> <td align="center">right-aligned</td> <td align="right">$1600</td> </tr> <tr> <td>col 2 is</td> <td align="center">centered</td> <td align="right">$12</td> </tr> <tr> <td>zebra stripes</td> <td align="center">are neat</td> <td align="right">$1</td> </tr> <tr> <td> <ul> <li>item1</li> <li>item2</li> </ul> </td> <td align="center">See the list</td> <td align="right">from the first column</td> </tr> </tbody> </table> 

这是它在Github上的外观:

如果你想要一个没有项目符号列表(或任何其他非标准的用法)或一个单元格中使用更多的行<br />

 | Event | Platform | Description | | ------------- |-----------| -----:| | `message_received`| `facebook-messenger`<br/>`skype`| 

不是我所知道的,因为我知道的所有减价参考文献, 比如这个 ,都提到:

单元格内容只能在一行上

您可以使用Markdown Tables Generator (其示例看起来像您在问题中提到的示例,因此您可能已经知道它)。

Pandoc

如果您使用Pandoc的markdown (它扩展了GitHub grid_tables Markdown所基于的John Gruber的markdown语法 ),您可以使用grid_tables

 +---------------+---------------+--------------------+ | Fruit | Price | Advantages | +===============+===============+====================+ | Bananas | $1.34 | - built-in wrapper | | | | - bright color | +---------------+---------------+--------------------+ | Oranges | $2.10 | - cures scurvy | | | | - tasty | +---------------+---------------+--------------------+ 

multiline_tables

 ------------------------------------------------------------- Centered Default Right Left Header Aligned Aligned Aligned ----------- ------- --------------- ------------------------- First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. -------------------------------------------------------------