This is a stripped-down version of a single section of Grok TiddlyWiki, optimized for fast loading and readability by search engines. Some features are missing.

For the full Grok TiddlyWiki experience, please visit the wiki version of this page.

Wr:Tables

13th February 2021 at 5:25pm

Tables are created by putting pipe characters (|) between the columns, and putting each row on a separate line. A ! can be placed at the beginning of a cell to turn it into a header.

|!Number|!A|!B|!C|
|1|A1|B1|C1|
|2|A2|B2|C2|
|3|A3|B3|C3|

NumberABC
1A1B1C1
2A2B2C2
3A3B3C3

Alignment can be accomplished by adding spaces next to the vertical bars. To left-align, put a space at the right; to right-align, put a space at the left; and to center-align, put a space on both sides. By default, header cells are centered and other cells are left-aligned. You can see this in action below:

|!Number| !A|!B|!C |
| 1|A1|B1|C1|
| 2 |A2|B2|C2|
|3 |A3|B3|C3|

NumberABC
1A1B1C1
2A2B2C2
3A3B3C3

It's also possible to merge cells and apply further HTML markup. In most cases, you likely won't need these features, but if they sound useful, you can read about them in the TiddlyWiki documentation.