WarWithinMe / better-align

A vscode extension to provide better vertical alignment
Other
75 stars 39 forks source link

Markdown table align #72

Open SmallPepperZ opened 3 years ago

SmallPepperZ commented 3 years ago

I think it would be great if you could easily align markdown tables with this. I take notes in markdown, and have to individually indent each row to make the markdown look nice. It would be great if this extension did that automatically, going from this:

| Type| Inf | Stem | Past Participle |
|---    | --- | --- | --- |
| -ar   |bailar | bail-|bailado|
| -er   |comer|com-|comido|
| -ir   |reducir|reduc-|reducido|

to this:

| Type   | Inf       | Stem        | Past Participle      |
|---     | ---       | ---         | ---                  |
| -ar    |bailar     |bail-        |bailado               |
| -er    |comer      |com-         |comido                |
| -ir    |reducir    |reduc-       |reducido              |