With Markdown’s extended syntax you can create a table with column headers using the syntax
| Header 1 | Header 2 |
| -------- | -------- |
| Foo | Bar |
| Baz | Qux |
which will render like this:
Header 1 | Header 2 |
---|---|
Foo | Bar |
Baz | Qux |
However, there is no way to add row headers to create a two-dimensional table. Can anyone explain where the complication lies in creating a syntax for allowing row headers?
https://www.markdownguide.org/extended-syntax/#tables