Basic Table
The extension supports the standard MultiMarkdown table syntax.
A table requires at least one header row, a separator row made of dashes (-),
and one or more body rows.
Without surrounding pipes
Pipes at the beginning and end of each row are optional.
First Header | Second Header
------------- | -------------
Content Cell | Content Cell
Content Cell | Content Cell
With surrounding pipes
| First Header | Second Header |
| ------------- | ------------- |
| Content Cell | Content Cell |
| Content Cell | Content Cell |
Single column
Escaped pipes
A pipe preceded by a backslash (\|) is treated as a literal character,
not a column separator.
Pipe inside a code span
A pipe inside a backtick code span is not treated as a column separator.
Equal signs in the separator
The separator row also accepts = signs instead of -.