How to use CSS in Markdown?

css, markdown

Solution

you can use html in your mark down as normal.

<style>
mark{
    color:red;
}
</style>

<mark>what is DataBase</mark>

Problem

I want to use a CSS class in a Markdown file. For instance, `<i class="icon-renren"></i>` (from `fontawesome`) should be displayed as an icon if I import its CSS file in HTML. Is there any solution in Markdown?

Original source

Related problems