How to apply color in Markdown?

后端 未结 11 994
情话喂你
情话喂你 2020-11-28 01:08

I want to use Markdown to store textual information. But quick googling says Markdown does not support color. Also StackOverflow does not support color. Same as in case of G

11条回答
  •  粉色の甜心
    2020-11-28 01:38

    In Jekyll I was able to add some color or other styles to a bold element (should work with all other elements as well).

    I started the "styling" with {: and end it }. There is no space allowed between element and curly bracket!

    **My Bold Text, in red color.**{: style="color: red; opacity: 0.80;" }
    

    Will be translated to html:

    My Bold Text, in red color.
    

提交回复
热议问题