My company uses instiki quite heavily and is happy to contribute time to solve some of the problems we are running into.
We would like wiki formatting for table layout with outlines, and row backgrounds. The {background:#ddd}. |asdf|asdf|asdf| does not seem to work for backgrounds when you have a table{...} tag ahead of it and usually not at all.
We tried to work around the limitation by inserting html but that has it's own challenges such as the size of the table is also the size of the empty space above the table. Attached is an example of html that causes this to happen and the type of formatting options we would like to add to instiki in support of tables.
If we are pointed in the right direction -- which files and templates need to be modified and any other relevant guidance, myself of someone on my team will get it working and submit the patch to CVS.
<pre>
<table frame=box border=1 rules=all>
<caption>Services Provided to XXXX</caption>
<tbody>
<tr align="center" bgcolor=lightgray>
<th>System</th><th>OS</th><th>Services</th><th>Notes</th></tr>
<tr>
<td align="left">
Error: Failed to load processor prod01No macro or processor named 'prod01' found
</td><td>AIX 5.2</td>
<td align="left">full Informix Management<br>AIX Support for Informix Storage Only</td>
<td> MISSION CRITICAL SYSTEM<br>Shared Root with Byram SA</td></tr>
<tr>
<td align="left">
Error: Failed to load processor prod02No macro or processor named 'prod02' found
</td><td>AIX 5.2</td>
<td align="left">Informix DR Management<br>AIX Support for Informix Storage Only</td>
<td> Informix Standby and Reporting<br>Shared Root with Byram SA</td>
</tr>
<tr>
<td align="left">
Error: Failed to load processor rentalNo macro or processor named 'rental' found
</td><td>AIX 5.2</td>
<td align="left">Temporary, Replaces Farringdon<br>Monitoring and support rec process<br>AIX Support for Informix Storage Only</td>
<td> Nightly Recovery System<br>Shared Root with Byram SA</td>
</tr>
<tr>
<td align="left">
Error: Failed to load processor dev01No macro or processor named 'dev01' found
</td><td>AIX 5.2</td>
<td align="left">Ad Hoc -- No Monitoring<br>AIX Support for Informix Storage Only</td>
<td> Informix Standby and Reporting<br>Shared Root with Byram SA</td>
</tr>
</tbody>
</table>
</pre>