是否可以在降价表中创建一个列表(项目符号,编号与否)。
表是这样的:
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
列表是这样的:
* one
* two
* three
我能把它们合并吗?
据我所知没有,因为我所知道的所有降价参考资料,比如这个,都提到:
单元格内容必须只在一行上
你可以尝试使用Markdown表生成器(它的例子看起来像你在你的问题中提到的,所以你可能已经知道了)。
Pandoc
如果你正在使用Pandoc的markdown(它扩展了John Gruber的markdown语法,GitHub调味markdown基于此),你可以使用grid_tables:
+---------------+---------------+--------------------+
|水果 |价格 |优势 |
+===============+===============+====================+
|香蕉 |$1.34 |- 内置包装器 |
| | |- 鲜艳的色彩 |
+---------------+---------------+--------------------+
|橙子 |$2.10 |- 治疗坏血病 |
| | |- 美味 |
+---------------+---------------+--------------------+
或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.
-------------------------------------------------------------
据我所知没有,因为我所知道的所有降价参考资料,比如这个,都提到:
单元格内容必须只在一行上
你可以尝试使用Markdown表生成器(它的例子看起来像你在你的问题中提到的,所以你可能已经知道了)。
Pandoc
如果你正在使用Pandoc的markdown(它扩展了John Gruber的markdown语法,GitHub调味markdown基于此),你可以使用grid_tables:
+---------------+---------------+--------------------+
|水果 |价格 |优势 |
+===============+===============+====================+
|香蕉 |$1.34 |- 内置包装器 |
| | |- 鲜艳的色彩 |
+---------------+---------------+--------------------+
|橙子 |$2.10 |- 治疗坏血病 |
| | |- 美味 |
+---------------+---------------+--------------------+
或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.
-------------------------------------------------------------