New Feature: Support for Tables in posts

Key information about the messageboard.
Note: You must be logged in/registered to read all other forums.
Post Reply
User avatar
elneilios
Site Admin
Posts: 4590
Joined: June 8th, 2012, 1:19 pm
Contact:

New Feature: Support for Tables in posts

Post by elneilios »

Hello everyone,

After seeing Mark's brilliant list of "Where are they now?" players in the Former U's Forum it got me to thinking about giving him and everyone else a way to create tables in posts. So this is what I've come up with. It might end up a bit confusing but figured I'd put it out there and see if it's useful to anyone.

Basically you need a

Code: Select all

[table][/table]
to start and end the table, then a

Code: Select all

[tr][/tr]
for each row and a

Code: Select all

[td][/td]
for each cell in a row.

Here is a small example of usage:

Code: Select all

[table]
	[tr][td][b]Name[/b][/td] [td][b]Club[/b][/td] [td][b]League[/b][/td] [td][b]Apps[/b][/td] [td][b]Goals[/b][/td] [td][b]Year[/b][/td] [td][b]Loan[/b][/td][/tr]

	[tr][td]John White[/td][td]Southend Utd[/td][td]NL[/td][td]255[/td][td]0[/td][td]2013[/td][td]-[/td][/tr]
	[tr][td]Sam Walker[/td][td]Kilmarnock[/td][td]SCO[/td][td]213[/td][td]0[/td][td]2018[/td][td]-[/td][/tr]
[/table]
[tr][td]Name[/td] [td]Club[/td] [td]League[/td] [td]Apps[/td] [td]Goals[/td] [td]Year[/td] [td]Loan[/td][/tr]

[tr][td]John White[/td][td]Southend Utd[/td][td]NL[/td][td]255[/td][td]0[/td][td]2013[/td][td]-[/td][/tr]
[tr][td]Sam Walker[/td][td]Kilmarnock[/td][td]SCO[/td][td]213[/td][td]0[/td][td]2018[/td][td]-[/td][/tr][/table]
Post Reply