You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When tables are inside lists they lose their indentation after formatting. A left pad / indentation has to be supported when the table has at least a left border in the output (|).
Expected behavior for mixed indentation scenarios:
When at least half the rows have indentation, use indentation in the output.
When different indentation styles are used, use the one that is most frequent in the output.
Sample input
* List item
|Type | Range| Size|
|-|-|-|
|sbyte | -128 to 127| Signed 8-bit integer|
|byte| 0 to 255| Unsigned 8-bit integer|
|char| U+0000 to U+ffff| Unicode 16-bit character|
Current output
* List item
| Type | Range | Size |
|-------|------------------|--------------------------|
| sbyte | -128 to 127 | Signed 8-bit integer |
| byte | 0 to 255 | Unsigned 8-bit integer |
| char | U+0000 to U+ffff | Unicode 16-bit character |
Expected output
* List item
| Type | Range | Size |
|-------|------------------|--------------------------|
| sbyte | -128 to 127 | Signed 8-bit integer |
| byte | 0 to 255 | Unsigned 8-bit integer |
| char | U+0000 to U+ffff | Unicode 16-bit character |
The text was updated successfully, but these errors were encountered:
When tables are inside lists they lose their indentation after formatting. A left pad / indentation has to be supported when the table has at least a left border in the output (
|
).Expected behavior for mixed indentation scenarios:
The text was updated successfully, but these errors were encountered: