SublimeTableEditor
SublimeTableEditor copied to clipboard
Add support for reStructuredText substitution syntax
reStructuredText has support for user-defined substition (http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#substitution-definitions). Here is example of usage:
.. |varname| replace:: content
+---------------------+-----------+
| A | B |
+=====================+===========+
| varname = |varname| | value 1.2 |
+---------------------+-----------+
| value 2.1 | value 2.2 |
+---------------------+-----------+
Buf reformatting (Ctrl+Shift+A) completely breaks table layout:
+-----------+-----------+---+-----------+
| A | B | | |
+===========+===========+===+===========+
| varname = | varname | | value 1.2 |
+-----------+-----------+---+-----------+
| value 2.1 | value 2.2 | | |
+-----------+-----------+---+-----------+
It would be nice to have support for such tables.
Thanks for the feedback!
Now Table Editor use character '|' for detect column. One way for fix this issue is detect column by '+' character, but the changes will break simplicity of work with Table Editor and I am not ready do this changes now.
Thanks!
Any word on this issue yet? It still happens on the latest version of the plugin.
No changes for this issue.