Formatting tables
Start and end a table with horizontal bars, separated with vertical bars
Separate columns with horizontal bars. Spaces are not significant and are useful to make the table more readable while editing
|------------------------|
| *Header 1* | *Header2* |
| value1.1 | value2.1 |
| value2.1 | value2.2 |
|------------------------|
Yields:
| Header 1 | Header2 |
| value1.1 | value2.1 |
| value2.1 | value2.2 |
|