shuGH / vscode-table-formatter

Table formatter extension for VSCode.
MIT License
49 stars 12 forks source link

Escaped | are considered as columns #21

Open u1735067 opened 6 years ago

u1735067 commented 6 years ago

Escaped column characters are not considered as escaped:

|Abcde|Bcdef|
|-|-|
|1\|2|2\|3|

if formatted as

| Abcde | Bcdef |     |     |
| ----- | ----- | --- | --- |
| 1\    | 2     | 2\  | 3   |

instead of

| Abcde | Bcdef |
| ----- | ----- |
| 1\| 2 | 2\| 3 |