!! should format when starting inline !!
Testing|test|Outtt|final
--|:--:|:--|--:
Some Data|Otherrrr|asdfffff|testingthis
a|b|c|d

[expect]
| Testing   |   test   | Outtt    |       final |
| --------- | :------: | :------- | ----------: |
| Some Data | Otherrrr | asdfffff | testingthis |
| a         |    b     | c        |           d |

!! should format when not inline !!
| testing       | This          | Out   |
| ------------- |:-------------:| -----:|
| testing       | anb kdl l l j | $1234 |
| asdfffff      | what hap      |   $22 |
| hereissometex | allo          |  $224 |

[expect]
| testing       |     This      |   Out |
| ------------- | :-----------: | ----: |
| testing       | anb kdl l l j | $1234 |
| asdfffff      |   what hap    |   $22 |
| hereissometex |     allo      |  $224 |

!! should correctly centre all the columns in this table !!
|Tes|
|:---:|
|testd|
|test|

[expect]
|  Tes  |
| :---: |
| testd |
| test  |

!! Should correctly determine column width for cells containing double-width characters like emoji !!

| Name             | Required |
| ---------------- | :------: |
| test             |    ❌    |

[expect]
| Name | Required |
| ---- | :------: |
| test |    ❌    |

!! Should allow inline markup inside tables. These come from https://github.github.com/gfm/.
| Type | Example
| - | - |
| Backslash escapes | \*not emphasized* |
| Entity and numeric character references | &amp; |
| Code spans | `code` |
| Emphasis and strong emphasis | *emphasis* **strong** |
| Strikethrough | ~~test~~ |
| Links | [link](/uri "title") |
| Images | ![foo](/url "title") |
| Autolinks | <http://foo.bar.baz> |
| Autolinks (extension) | www.commonmark.org |
| Raw HTML | <a><bab><c2c> |

[expect]
| Type                                    | Example               |
| --------------------------------------- | --------------------- |
| Backslash escapes                       | \*not emphasized*     |
| Entity and numeric character references | &amp;                 |
| Code spans                              | `code`                |
| Emphasis and strong emphasis            | _emphasis_ **strong** |
| Strikethrough                           | ~~test~~              |
| Links                                   | [link](/uri "title")  |
| Images                                  | ![foo](/url "title")  |
| Autolinks                               | <http://foo.bar.baz>  |
| Autolinks (extension)                   | www.commonmark.org    |
| Raw HTML                                | <a><bab><c2c>         |
