Thank you for the extension, the only usable way I found to edit Markdown tables so far!
My issue: When the table is reformatted, or alignment of a column is changed, spaces are inserted and removed as necessary.
However, I sometimes use special space characters like U+00A0 NO-BREAK SPACE or U+2007 FIGURE SPACE. They are intentionally different from a regular space, U+0020 SPACE, and should be preserved.
I'm not sure how the extension distinguishes between space and not-space, but if you e.g. use regular expressions, the solution would be not to use \s but simply .
Thank you for the extension, the only usable way I found to edit Markdown tables so far!
My issue: When the table is reformatted, or alignment of a column is changed, spaces are inserted and removed as necessary.
However, I sometimes use special space characters like U+00A0 NO-BREAK SPACE or U+2007 FIGURE SPACE. They are intentionally different from a regular space, U+0020 SPACE, and should be preserved.
I'm not sure how the extension distinguishes between space and not-space, but if you e.g. use regular expressions, the solution would be not to use
\sbut simply.