0%

markdown

Anchor

Anchor is a way to jump to a specific location in a page.

  1. create anchor

    1
    <a name="anchor_name"></a>
  2. jump to anchor

    1
    [Link Text](#anchor_name)

Colored text

Markdown itself support a limited features of HTML, so you can use HTML to color text.

1
2
3
<span style="color:red">red</span>
<span style="color:blue">blue</span>
<span style="color:green">green</span>