|
[dokuwiki]
||
[Date Prev]
[09-2005 Date Index]
[Date Next]
||
[Thread Prev]
[09-2005 Thread Index]
[Thread Next]
[dokuwiki] Re: AW: Re: handling large tables
- From: Andreas Gohr <andi@xxxxxxxxxxxxxx>
- To: dokuwiki@xxxxxxxxxxxxx
- Date: Fri, 16 Sep 2005 16:44:57 +0200
On Fri, 16 Sep 2005 11:43:10 +0200
Andreas.Trawoeger@xxxxxxxxxxxxxxx wrote:
> My problem with dokuwiki isn't creating tables my problem is how to
> maintain them in a sane way?
I guess the best solution would be an extended table syntax plugin
which adds a syntax for defining table cells on multiple rows. Something
like the extended syntax in MediaWiki.
I don't remember the MediaWiki Syntax but I imagine something like this
could work:
<table>
=====
! A
more A
-----
B
-----
C
=====
A2
-----
B2
-----
C2
</table>
Would result in
<table>
<tr>
<th>A more A</th>
<td>B</td>
<td>C</td>
</tr>
<tr>
<th>A2</th>
<td>B2</td>
<td>C2</td>
</tr>
</table>
Anyone want's to build one?
Andi
|