[Trac-tickets] [The Trac Project] #1293: Table cell merging
(colspan)
The Trac Project
noreply at edgewall.com
Sun Mar 13 22:30:51 EST 2005
#1293: Table cell merging (colspan)
-------------------------+--------------------------------------------------
Id: 1293 | Status: new
Component: wiki | Modified: Sun Mar 13 22:30:50 2005
Severity: enhancement | Milestone: 0.9
Priority: lowest | Version: 0.8.1
Owner: jonas | Reporter: trac-form at swapoff.org
-------------------------+--------------------------------------------------
The attached patch implements column spanning/merging in the Trac
WikiFormatting. Syntax is very basic, though not 100% backward compatible.
The following table
{{{
|| Cell 1 || Cell 2 || Cell 3 ||
|| Cell 4 |||| Cell 5 and 6 ||
}}}
currently renders as
|| Cell 1 || Cell 2 || Cell 3 ||
|| Cell 4 |||| Cell 5 and 6 ||
but with this patch renders as
{{{
#!html
<table class="wiki">
<tr><td>Cell 1</td><td>Cell 2</td><td>Cell 3</td></tr>
<tr><td>Cell 4</td><td colspan="2">Cell 5 and 6</td></tr>
</table>
}}}
--
Ticket URL: <http://projects.edgewall.com/trac/ticket/1293>
The Trac Project <>
More information about the Trac-Tickets
mailing list