Reputation: 6302
How can I make a markdown table where the heading isn't bold?
| content 1 | babbad |
|content2 | dsfa |
| content 3 | safds |
Upvotes: 13
Views: 7379
Reputation: 8390
try using CSS hack:
|<span style="font-weight:normal">heading</span>|
|:---------------------------------------------:|
| content is king |
This is in fact not an extended Markdown or Github Flavored Markdown.
Upvotes: 12