Tables

Tables Tables

Most implementations of Markdown support tables, however, table markup is not defined in the Commonmark specification of the Markdown language.

Most implementations support the GitHub Flavored Markdown (GFM) table syntax. The syntax for tables is:

| Default | Left justified | Right justified | Centered |
| ------- | :------------- | --------------: | :------: |
| 1234 | 1234 | 1234 | ABC |
| ABC | 1234 | 1234 | 1234 |
| 1234 | 1234 | 1234 | ABC |
| ABC | 1234 | 1234 | 1234 |

Renders as:

DefaultLeft justifiedRight justifiedCentered
123412341234ABC
ABC123412341234
123412341234ABC
ABC123412341234