xfnw
xfnw

Reputation: 84

Table headers with arbitrary locations in Github flavored markdown

In the gfm documentation, the examples for tables always have the table headers at the top.

| foo | hello |
| --- | ----- |
| bar | test  |

preview of table with header at top

Is there a way to place the headers in arbitrary locations, for example to have headers on the top and side? This can be done using HTML to make the table, however is there a solution to this without using HTML?

preview of table with header on left side and top

Upvotes: 0

Views: 91

Answers (1)

Chris
Chris

Reputation: 136910

No, there is no way to do this without using HTML.

Upvotes: 1

Related Questions