Skip to content

Commit

Permalink
prettier#15970: add change log file
Browse files Browse the repository at this point in the history
  • Loading branch information
Yana Peycheva committed Apr 23, 2024
1 parent c6fe8ae commit dcae1bc
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions changelog_unreleased/markdown/16231.md
@@ -0,0 +1,29 @@
#### Markdown: format correctly table when columns are missing (#16231 by @yanapeycheva)

<!-- prettier-ignore -->
```md
<!-- Input -->
a | b
:-- | :-- | :--
a | b | c
a || c
a | b
a |

<!-- Prettier stable -->
| a | b | |
| :-- | :-- | :-- |
| a | b | c |
| a | | c |
| a | b | |
| a | | |

<!-- Prettier main -->
| a | b |
| :-- | :-- | :-- |
| a | b | c |
| a | | c |
| a | b |
| a |

```

0 comments on commit dcae1bc

Please sign in to comment.