有没有一种方法可以在降价表中使用语义换行



我想在写表时使用语义换行,这样每个单元格都可以出现在自己的行上。

例如,如果我有这个表:

|         | Column One | Column Two | Column Three |
|---------|------------|------------|--------------|
| Row One | Cell One   | Cell Two   | Cell Three   |
| Row Two | Cell Four  | Cell Five  | Cell Six     |

假设每个单元格的内容可能是一个完整的句子,我可能想把它写成这样:

|         | Column One | Column Two | Column Three |
|---------|------------|------------|--------------|
| Row One
| Cell One
| Cell Two
| Cell Three
| Row Two
| Cell Four
| Cell Five
| Cell Six

在GitHub Flavored Markdown中,除了编写原始HTML标记之外,还有什么方法可以将单行的单元格分解为多行吗?

想法不错,但不幸的是,GitHub对Markdown中的表的支持不支持这一点。

最新更新