Page 1 of 1

Table bbcode

Posted: Sun Jun 07, 2020 10:37 pm
by otseng
The table bbcode has been added.

The easiest way to generate a table is to press the table icon between the subject and the post area at the far right. Then press the size of the table you want to create. It will autogenerate the bbcode for the table.

Example code:

Code: Select all

[table]
	[thead]
		[tr]
			[th]Title1[/th]
			[th]Title2[/th]
		[/tr]
	[/thead]
	[tbody]
		[tr]
			[td]Text11[/td]
			[td]Text21[/td]
		[/tr]
		[tr]
			[td]Text12[/td]
			[td]Text22[/td]
		[/tr]
	[/tbody]
[/table]
It will display as:
Title1 Title2
Text11 Text21
Text12 Text22