[dokuwiki] tables col and row classes
- From: Spring Pierre <pierre.spring@xxxxxxx>
- To: dokuwiki@xxxxxxxxxxxxx
- Date: Sat, 23 Feb 2008 19:17:29 +0100
hi all,
as discussed in the irc today [1], i have made a patch which adds
classes to the tr's, td's and th's.
these classes tell you in which column or row you currently are.
e.g.:
^ g ^ g ^ d d ^ cc ^
^ g | g || d d |
^ g | g | d d ||
will be rendered to:
<table class="inline">
<tr class="row0">
<th class="col0" > g </th>
<th class="col1" > g </th>
<th class="col2" > d d </th>
<th class="col3 leftalign"> cc </th>
</tr>
<tr class="row1">
<th class="col0" > g </th>
<td class="col1 leftalign" colspan="2"> g </td>
<td class="col4" > d d </td>
</tr>
<tr class="row2">
<th class="col0" > g </th>
<td class="col1" > g </td>
<td class="col2 leftalign" colspan="2"> d d </td>
</tr>
</table>
greetings ... caillou
==
[1] http://irclog.dokuwiki.org/index.php?d=2008-02-23
--
Liip AG // Rte de la Fonderie 7 // CH-1700 Fribourg
Fon 026 4222511 // Key id 0x5BF5F8FA // www.liip.ch
Other related posts:
- » [dokuwiki] tables col and row classes