我试图在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文档中找不到任何东西,所以我希望我遗漏了一些基本简单的东西。
发布于 2010-04-02 22:17:05
^ Heading 1 ^ Heading 2 ^
| Some text | Multiple\\ rows of\\ text |您所需要的只是表单元格中的换行。享受吧!
发布于 2014-04-29 23:32:28
我知道在回答问题之后很长一段时间,但只是为了给社区提供更多的选择:
您还可以使用插件(如EditTable )对表进行可视化编辑(如Microsoft ):https://www.dokuwiki.org/plugin:edittable。
下面列出了其他选项:https://www.dokuwiki.org/tips:table_编辑
https://serverfault.com/questions/128924
复制相似问题