ustroetz
ustroetz

Reputation: 6302

Markdown table without bold heading

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

Answers (1)

Pandemonium
Pandemonium

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

Related Questions