I am using Emacs's table.el
mode to fill a lot of tables in rst documents.
table.el
is really fine to do the job, but it lacks the possibility to have one space between vertical separator and cell content.
That is, by default, it fills tables like this:
+-------+-----+
|content|stuff|
+-------+-----+
What I want to achieve is to have a one space padding before and after each separator to match the RST syntax like this :
+---------+-------+
| content | stuff |
+---------+-------+