# Table in Markdown https://michelf.ca/projects/php-markdown/extra/#table ## nptable ```````````````````````````````` example First Header | Second Header ------------- | ------------- Content Cell | Content Cell Content Cell | Content Cell .
First Header Second Header
Content Cell Content Cell
Content Cell Content Cell
```````````````````````````````` ## table ```````````````````````````````` example | First Header | Second Header | | ------------- | ------------- | | Content Cell | | | Content Cell | Content Cell | .
First Header Second Header
Content Cell
Content Cell Content Cell
```````````````````````````````` ```````````````````````````````` example | Command | Description | | --- | --- | | git status | List all new or modified files | | git diff | Show file differences that haven't been staged | .
Command Description
git status List all new or modified files
git diff Show file differences that haven't been staged
```````````````````````````````` ## align table ```````````````````````````````` example Left | Center | Right :---- | :--------: | ------: a | b | c .
Left Center Right
a b c
```````````````````````````````` ```````````````````````````````` example | Left | Center | Right | | :--- | :----: | ----: | | a | b | c | .
Left Center Right
a b c
```````````````````````````````` ## Misc Table ```````````````````````````````` example | A | | | - | | | a | b | .
A
a b
```````````````````````````````` ```````````````````````````````` example A | - | a | b .
A
a b
```````````````````````````````` ```````````````````````````````` example | Foo | Bar | |-----|-----| | boo | baz | | faz | | .
Foo Bar
boo baz
faz
```````````````````````````````` ## Mismatch length ```````````````````````````````` example | First Header | | ------------- | ------------- | | Content Cell | | | Content Cell | Content Cell | .

| First Header | | ------------- | ------------- | | Content Cell | | | Content Cell | Content Cell |

```````````````````````````````` ```````````````````````````````` example | First Header | Second Header | | ------------- | ------------- | | Content Cell | | Content Cell | Content Cell | .

| First Header | Second Header | | ------------- | ------------- | | Content Cell | | Content Cell | Content Cell |

```````````````````````````````` ```````````````````````````````` example A | - | - | a | b | c .

A |

```````````````````````````````` ```````````````````````````````` example A | B | C - | - | - a | b .

A | B | C

````````````````````````````````