在 DokuWiki 中创建表格

Bry*_*yan 4 wiki

我正在尝试在 DokuWiki 中创建一个表格,其中包含一个垂直跨越的单元格,但是与语法指南中的示例不同,我要创建的单元格有不止一行文本。

以下是我想要实现的 ASCII 版本

+-----------+-----------+
| Heading 1 | Heading 2 |
+-----------+-----------+
|           | Multiple  |
| Some text | rows of   |
|           | text      |
+-----------+-----------+
Run Code Online (Sandbox Code Playgroud)

我试过以下语法

^ Heading 1 ^ Heading 2 ^
| Some text | Multiple  |
| :::       | rows of   |
| :::       | text      |
Run Code Online (Sandbox Code Playgroud)

但这会产生输出

+-----------+-----------+
| Heading 1 | Heading 2 |
+-----------+-----------+
|           | Multiple  |
|           +-----------+
| Some text | rows of   |
|           +-----------+
|           | text      |
+-----------+-----------+
Run Code Online (Sandbox Code Playgroud)

我在 DokuWiki 文档中找不到任何内容,所以我希望我错过了一些基本简单的东西?

Sky*_*awk 9

^ Heading 1 ^ Heading 2 ^
| Some text | Multiple\\ rows of\\ text |
Run Code Online (Sandbox Code Playgroud)

您所需要的只是表格单元格内的换行符。享受!