Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Markdown table without bold heading

Tags:

markdown

How can I make a markdown table where the heading isn't bold?

| content 1  | babbad |
|content2 | dsfa |
| content 3  | safds  |
like image 776
ustroetz Avatar asked Feb 20 '15 13:02

ustroetz


1 Answers

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.

like image 97
Pandemonium Avatar answered Sep 27 '22 18:09

Pandemonium