https://www.gaiaonline.com/forum/gaia-community-discussion/staff-notices/t.63632027_3085/#3085
We've just added support for tables in BBCODE. There is also a table button in the new text editor for creating tables.
The following BBCODE creates a 2X2 table. TR defines a row, and TD defines a cell/column.
[table]
[tr]
[td]cell 1[/td]
[td]cell 2[/td]
[/tr]
[tr]
[td]cell 3[/td]
[td]cell 4[/td]
[/tr]
[/table]
[tr]
[td]cell 1[/td]
[td]cell 2[/td]
[/tr]
[tr]
[td]cell 3[/td]
[td]cell 4[/td]
[/tr]
[/table]
result:
cell 1 cell 2
cell 3 cell 4