我正在尝试在 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 文档中找不到任何东西,所以我希望我遗漏了一些基本简单的东西?
您所需要的只是表格单元格中的换行符。享受!
我知道在回答问题后很长时间,但只是为了给社区提供更多选择:
您还可以使用像 EditTable 这样的插件对表格进行可视化编辑(如在 Microsoft Excel 中):https ://www.dokuwiki.org/plugin:edittable
此处列出了其他选项: https ://www.dokuwiki.org/tips:table_editing