MarkDown

一级标题(#)#与标题之间加个空格

二级标题(##)

三级标题(###)

列表(-)

  • item1
  • item2
  • item3

有序列表(1. 2. 3.)

  1. item1
  2. item2
  3. item3

图片链接

图片

图片![]后跟写在()里的图片地址

MarkDown_第1张图片

引用>

这是一条引用

粗体两个*包围

粗体字

斜体一个*包围

斜体

代码引用单行一个`包围

hello world!//单行代码

多行代码三个`包围

public class Code {
  public static void main(String[] args){
    System.out.println("hello world");
  }

}

表格

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |
显示效果
Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

你可能感兴趣的:(MarkDown)