How to apply color in Markdown?

后端 未结 11 1001
情话喂你
情话喂你 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:22

    Short story: links. Make use of something like:

    a[href='red'] {
        color: red;
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
    Look, ma! Red!

    (HTML above for demonstration purposes)

    And in your md source:

    [Look, ma! Red!](red)

提交回复
热议问题