jakewvincent / mkdnflow.nvim

Fluent navigation and management of markdown notebooks
GNU General Public License v3.0
684 stars 41 forks source link

Properly handle linebreaks in tables #243

Open jakewvincent opened 2 months ago

jakewvincent commented 2 months ago

Properly format tables with rows ending in a backslash. E.g. the following

| Name | Default | Possible values            |
| ---- | ------- | -------------------------- |
| blah | true    | This is the first option \
This is the second option  |
| bleh | false   | Generic options            |
| blih | true    | Generic options            |
| bloh | false   | Generic options            |
| bluh | true    | Generic options            |

should be formatted as such:

| Name | Default | Possible values            |
| ---- | ------- | -------------------------- |
| blah | true    | This is the first option \
                   This is the second option  |
| bleh | false   | Generic options            |
| blih | true    | Generic options            |
| bloh | false   | Generic options            |
| bluh | true    | Generic options            |

Needs: