• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

[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