Markdown Reference

CommonMark

*Italic*

**Bold**

# Heading 1

## Heading 2

### Heading 3

[Link](https://commonmark.org/)

![Image](https://commonmark.org/help/images/favicon.png)

> Blockquote

* List
* List
* List

1. One
2. Two
3. Three

`Inline code` with backticks

强调

斜体

Italic

加粗

Bold

标题

# Heading 1

## Heading 2

### Heading 3

链接

Link

图片

Image

引用

Blockquote

列表

无序列表

  • List
  • List
  • List

有序列表

  1. One
  2. Two
  3. Three

代码

Inline code

Inline code with backticks

code block

#include <stdio.h>

int main()
{
    printf("hello, world!\n");
    return 0;
}

GitHub Flavored Markdown

语法高亮

#include <stdio.h>

int main()
{
    printf("hello, world!\n");
    return 0;
}

表格

First Header Second Header
Content from cell 1 Content from cell 2
Content in the first column Content in the second column
posted @ 2019-09-02 15:15  typescript  阅读(521)  评论(0编辑  收藏  举报