From MozillaZine Knowledge Base
There's a major break down in parsing html tables, in particular the </tr> and </table> end tags are no longer getting recognized.
See http://kb.mozillazine.org/Calendaring_Extensions_Index_%28Sunbird%2C_Lightning%2C_CalExt%29
This table was working fine recently, so it may be due to a wiki change/upgrade. Gc 16:10, 23 December 2006 (UTC)
After some more experimenting, it looks like maybe empty XHTML tags such as <td/> or <th/> are no longer being recognized as closed, so a workaround may be to change <td/> into <td></td>. Gc 14:44, 24 December 2006 (UTC)
Using <th/> and <td/>
|
Alpha |
Beta |
Gamma |
</tr row="1a">
| One |
A-1 |
|
C-1 |
</tr row="2a>
| Two |
A-2 |
B-2 |
C-2 |
</table table="a">
Using <th></th> and <td></td>
|
Alpha |
Beta |
Gamma |
| One |
A-1 |
|
C-1 |
| Two |
A-2 |
B-2 |
C-2 |