Markdown table without bold heading

markdown

Solution

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.

Problem

How can I make a markdown table where the heading isn't bold? ``` | content 1 | babbad | |content2 | dsfa | | content 3 | safds | ```

Original source