Rathmun
"Not interested" is not hate speech.
- Joined
- Nov 21, 2014
- Messages
- 9,220
- Likes received
- 244,281
This table should have zeroes "0" on the diagonal from top left to bottom right.
And yet when I preview it or post it, those cells are empty.
When I inspect the BBCode before posting, the "0" characters are where I'd expect them to be. The full table appears as thus
But if I go to edit the post after having posted it, the bbcode for the table has changed to this.
1 | 2 | 3 | |
1 | 1 | 2 | |
2 | 1 | 1 | |
3 | 2 | 1 |
When I inspect the BBCode before posting, the "0" characters are where I'd expect them to be. The full table appears as thus
Code:
[xtable]
{tbody}
{tr}
{td}0{/td}
{td}1{/td}
{td}2{/td}
{td}3{/td}
{/tr}
{tr}
{td}1{/td}
{td}0{/td}
{td}1{/td}
{td}2{/td}
{/tr}
{tr}
{td}2{/td}
{td}1{/td}
{td}0{/td}
{td}1{/td}
{/tr}
{tr}
{td}3{/td}
{td}2{/td}
{td}1{/td}
{td}0{/td}
{/tr}
{/tbody}
[/xtable]
But if I go to edit the post after having posted it, the bbcode for the table has changed to this.
Code:
[xtable=skin1]
{tbody}
{tr}
{td} {/td}
{td}1{/td}
{td}2{/td}
{td}3{/td}
{/tr}
{tr}
{td}1{/td}
{td} {/td}
{td}1{/td}
{td}2{/td}
{/tr}
{tr}
{td}2{/td}
{td}1{/td}
{td} {/td}
{td}1{/td}
{/tr}
{tr}
{td}3{/td}
{td}2{/td}
{td}1{/td}
{td} {/td}
{/tr}
{/tbody}
[/xtable]