If you're using Nim devel (v1.5.1), you're not limited anymore to use just rst tables in your documentation:
======== ===============
Header 1 Header 2
======== ===============
Content More content
Foo Bar
Baz Quux
======== ===============
which can become cumbersome if some column suddenly needs more space:
======== ====================
Header 1 Header 2
======== ====================
Content More content
Foo Bar
Baz Quux
I need more space here Every row must move
======== ====================
| Header 1 | Header 2 |
| ---- | ---- |
| Content | More content |
| Foo | Bar |
| Baz | Quux |
| Header 1 | Header 2 |
| ---- | ---- |
| Content | More content |
| Foo | Bar |
| Baz | Quux |
| I need more space here | Nothing changes |
Markdown tables are not yet supported on the forum - the support for markdown tables will come with the next forum update.
Current limitations:
Funny, I didn't even notice that my second rst table is wrong - I didn't change the number of ='s. The way it is written, the contents of the first column of the last row will be "I need ".
Here is the correct version:
====================== ====================
Header 1 Header 2
====================== ====================
Content More content
Foo Bar
Baz Quux
I need more space here Every row must move
====================== ====================
And that's one more reason to use markdown tables ;)