• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[td] and [tr] tags

Status
Not open for further replies.
Level 11
Joined
Feb 18, 2004
Messages
394
...
Tables in HTML documents
Title 1Title 2
Cell in Col1Cell in Col2
Cell in Col1Cell in Col2
Cell in Col1Cell in Col2
Cell in Col1Cell in Col2
Cell in Col1Cell 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.
 
[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]

Oh okay.
 
Status
Not open for further replies.
Top