...
Tables in HTML documents
Title 1 | Title 2 |
Cell in Col1 | Cell in Col2 |
Cell in Col1 | Cell in Col2 |
Cell in Col1 | Cell in Col2 |
Cell in Col1 | Cell in Col2 |
Cell in Col1 | Cell in Col2 |
[TABLE][tr][TD]Title 1[/TD][TD]Title 2[/TD][/tr]
[tr][td]Cell in Col1[/td][td]Cell in Col2[/td][/tr]
[tr][td]Cell in Col1[/td][td]Cell in Col2[/td][/tr]
[tr][td]Cell in Col1[/td][td]Cell in Col2[/td][/tr]
[tr][td]Cell in Col1[/td][td]Cell in Col2[/td][/tr]
[tr][td]Cell in Col1[/td][td]Cell in Col2[/td][/tr][/TABLE]
[TABLE] isn't parsed as [table] is. It's simply a 1:1 conversion to HTML. Thus why it fucks up horribly when you do something as stupid as using a cell tag or a row tag outside of the defined syntax and structure of the document.
At worst, this is laziness in way of implementing a BBCode tag, not a bug.
Edit: For even further clarification, THW's theme's rely heavily on tables for document structure. So tossing a random row/cell in where there really, REALLY isn't supposed to be one is BOUND to cause issues.