是的,您可以使用HTML合并它们。当我在Github的.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 |
|
- item1
- item2
或纯HTML:
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
| See the list | from the first column |
这是它在Github上的样子: