I just looked at Metro's world ranking table and here are the tags (I add space so they are visible).
[ table] &
[ /table] to start / end the table in your post (this is the simple grid button on the second row),
[ tr] &
[ /tr] to start / end a line in the table (second button with row highlighted in blue),
[ td] &
[ /td] for each column entry within a line (3rd button with just a cell highlighted).
Sounds easy like that? Now I'm going to make a fool of myself and put a table here below
row 1 / column 1 | row 1 / column 2 |
row 2 / column 1 | row 2 / column 2 |
Here is the code used:[ table]
[ tr] [ td]row 1 / column 1[ /td] [ td]row 1 / column 2[ /td] [ /tr]
[ tr] [ td]row 2 / column 1[ /td] [ td]row 2 / column 2[ /td] [ /tr]
[ /table]
Ok, so far it works but it doesn't look as good as the original. From what I see, Metro just added empty space after the first entry to enlarge the first column.
row 1 / column 1 | row 1 / column 2 |
row 2 / column 1 | row 2 / column 2 |
Here, I just added then spaces after "row 1 / column 1".
Modified code:[ table]
[ tr] [ td]row 1 / column 1 [ /td] [ td]row 1 / column 2[ /td] [ /tr]
[ tr] [ td]row 2 / column 1[ /td] [ td]row 2 / column 2[ /td] [ /tr]
[ /table]
Looking forward your next posts with shiny tables! And thank you for posting this question, I learned something too.