我正在尝试在 DokuWiki 中创建一个表格,其中有一个垂直跨越的单元格,但与语法指南,我想要创建的单元格有多行文本。
以下是我想要实现的 ASCII 版本
+-----------+-----------+
| Heading 1 | Heading 2 |
+-----------+-----------+
| | Multiple |
| Some text | rows of |
| | text |
+-----------+-----------+
我尝试过以下语法
^ Heading 1 ^ Heading 2 ^
| Some text | Multiple |
| ::: | rows of |
| ::: | text |
但这会产生输出
+-----------+-----------+
| Heading 1 | Heading 2 |
+-----------+-----------+
| | Multiple |
| +-----------+
| Some text | rows of |
| +-----------+
| | text |
+-----------+-----------+
我在 DokuWiki 文档中找不到任何内容,所以我希望我遗漏了一些根本简单的东西?
答案1
^ Heading 1 ^ Heading 2 ^
| Some text | Multiple\\ rows of\\ text |
您只需要在表格单元格内添加换行符即可。尽情享受吧!
答案2
我知道这个问题回答之后已经过去很长时间了,但只是为了给社区提供更多选择:
您还可以使用 EditTable 等插件对表格进行可视化编辑(类似于 Microsoft Excel):https://www.dokuwiki.org/plugin:edittable