How to format tables in the forum

If you’re looking for information on how to format tables in the forum, check out this page: How to format text in the forum

Basically like this:

| Header 1 | Header 2 |
|--|--|
| row 1 column 1 | row 1 column 2 |
| row 2 column 1 | row 2 column 2 |

Output:

Header 1 Header 2
row 1 column 1 row 1 column 2
row 2 column 1 row 2 column 2

If it’s annoying to format tables by hand, you could try this markdown table generator. (I use a plugin for Vim to format my tables. It looks like there are plugins for vscode too.)

1 Like

Thanks, Josh. I thought I remembered there being some documentation. This is perfect.

1 Like

@josh, I cheated a little with this:

|Header 1|Header 2
| - | -
|row 1 column 1 |row 1 column 2

which creates this:

Header 1 Header 2
row 1 column 1 row 1 column 2
1 Like