Skip to content

Instantly share code, notes, and snippets.

@pjvds
Last active December 17, 2015 02:59
Show Gist options
  • Save pjvds/5539685 to your computer and use it in GitHub Desktop.
Save pjvds/5539685 to your computer and use it in GitHub Desktop.
Table reformat example

When the following markdown tables is in my source:

|Left align|Right align|Center align|
|:---------|----------:|:----------:|
|This|This|This|
|column|column|column|
|will|will|will|
|be|be|be|
|left|right|center|
|aligned|aligned|aligned|

And I save the file, Mou could reformat it to:

| | Left align | Right align | Center align |
|:-------------|------------:|:------------:|
| This         |        This |     This     |
| column       |      column |    column    |
| will         |        will |     will     |
| be           |          be |      be      |
| left         |       right |    center    |
| aligned      |     aligned |   aligned    |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment