Creating Tables in DocuWiki

Posted by Bryan on Server Fault See other posts from Server Fault or by Bryan
Published on 2010-04-02T21:36:54Z Indexed on 2010/04/02 21:43 UTC
Read the original article Hit count: 212

Filed under:
|

I'm trying to create a table in DokuWiki, with a cell that vertically spans, however unlike the examples in the syntax guide, the cell I want to create has more than one row of text.

The following is an ASCII version of what I'm trying to achieve

+-----------+-----------+
| Heading 1 | Heading 2 |
+-----------+-----------+
|           | Multiple  |
| Some text | rows of   |
|           | text      |
+-----------+-----------+

I've tried the following syntax

^ Heading 1 ^ Heading 2 ^
| Some text | Multiple  |
| :::       | rows of   |
| :::       | text      |

but this generates the output

+-----------+-----------+
| Heading 1 | Heading 2 |
+-----------+-----------+
|           | Multiple  |
|           +-----------+
| Some text | rows of   |
|           +-----------+
|           | text      |
+-----------+-----------+

I can't find anything in the DokuWiki documentation, so I'm hoping I'm missing something fundamentally simple?

© Server Fault or respective owner

Related posts about dokuwiki

Related posts about wiki