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:
Default | Left justified | Right justified | Centered |
---|---|---|---|
1234 | 1234 | 1234 | ABC |
ABC | 1234 | 1234 | 1234 |
1234 | 1234 | 1234 | ABC |
ABC | 1234 | 1234 | 1234 |