Reference for new TABLE VB code needed

Thread Starter

WBahn

Joined Mar 31, 2012
29,976
There is nothing listed in the Help area for the TABLE VB code tag and it clearly does not work the same as it did with the vBulletin software. Is there a reference anywhere that can be used so that we can format tables properly? I need to go through my blogs and tweak all my tables, which shouldn't take to long once I know the new guidelines.
 

jrap

Joined Jun 25, 2006
1,125
Here is a quick demo, hope it's enough!

Code:
[table=head]
First|Row|Are|Headers
foo|foo|foo|foo
bar|bar|bar|bar
[/table]

First|Row|Are|Headers
foo|foo|foo|foo
bar|bar|bar|bar

Code:
[table=nohead]
No|Headers|This|Time
foo|foo|foo|foo
bar|bar|bar|bar
[/table]

No|Headers|This|Time
foo|foo|foo|foo
bar|bar|bar|bar
 
Top