Closed dk-teknologisk-mnm closed 3 years ago
Thanks for the issue. This is kind of a feature, to keep consistent with the multi-line option. (though this is against the behavior of markdown-it) So that users need not add leading pipes when 1st cell of the continuing line is empty, as
column 1 | column 2
---------|---------
row 1 | content \
| and continue
be like
column 1 | column 2 |
---|---|
row 1 |
content and continue |
Between version 3 and 4 I noticed a change in sensitivity for inserting spaces. If a space is placed in the beginning of a new line, before the first pipe of the table, the space seems to be parsed as cell content.
So in v3 the above markdown would be parsed as this:
And in v4 it gives this:
Is this a regression bug or a feature?