Markdown语法

空格

半方大的空白 或 
全方大的空白 或 
不断行的空白格 或 

字体

斜体、粗体或删除线代码:
*斜体*
**粗体**
~~删除线~~

效果如下:

斜体

粗体

删除线

横线

在空行上输入***---并按 return将绘制一条水平线。

效果如下:


标题

在行首使用1-6个(#)字符,对应级别1-6。例如:

# This is an H1

## This is an H2

### This is an H3

效果如下:

This is an H1

This is an H2

This is an H3

引用

Markdown使用(‘>’)字符进行块引用。例如:

>这是一条引用
>>这是一条引用
>>>这是一条引用

效果如下:

这是一条引用

这是一条引用

这是一条引用

列表

输入* list item 1将创建一个无序列表*符号可以替换为+-。 输入1. list item 1将创建一个有序列表-它们的标记源代码如下:

#### 未排序列表
*   Red
*   Green
*   Blue

#### 排序列表
1. Red
2. Green
3. Blue

效果如下:

未排序列表**

  • Red
  • Green
  • Blue

排序列表

  1. Red
  2. Green
  3. Blue

代码行

Markdown语法使用一对`字符对代码快进行高亮显示。例如:

`这是一行代码`

效果如下:

这是一行代码

代码块

Markdown语法使用一对```字符对代码快进行高亮显示。例如:

​```
public class Test() {
  System.out.println("Hello World!!!");
}
​```

效果如下:

public class Test() {
  System.out.println("Hello World!!!");
}

表格

输入|First Header|Second Header|,然后按“return”键。这将创建一个包含两列的表。

表的完整语法如下:
| First Header  | Second Header |
| ------------- | ------------- |
| Content Cell  | Content Cell  |
| Content Cell  | Content Cell  |
还可以在表中包含内联标记,如链接、粗体、斜体或删除线。

最后,通过在标题行中包含冒号(:),可以将该列中的文本定义为左对齐、右对齐或居中对齐:

| Left-Aligned  | Center Aligned  | Right Aligned |
| :------------ |:---------------:| -----:|
| col 3 is      | some wordy text | $1600 |
| col 2 is      | centered        |   $12 |
| zebra stripes | are neat        |    $1 |

最左边的冒号表示左对齐的列;最右边的冒号表示右对齐的列;两边的冒号表示中间对齐的列。

效果如下:

Left-Aligned Center Aligned Right Aligned
col 3 is some wordy text $1600
col 2 is centered $12
zebra stripes are neat $1

图片

图片与链接有类似的语法,但是图片在链接前需要额外的!符号,其语法如下:

![Alt text](/path/to/img.jpg)
![Alt text](/path/to/img.jpg "Optional title")
![图片名称](图片地址)
![图片名称](图片地址 "Optional title")
注:[方括号]与(小括号)之间无空格,括号为英文字符。

示例:阿尔帕西诺

链接

标记支持两种链接样式:内联和引用。 在这两种样式中,链接文本由[方括号]分隔。

要创建内联链接,请在链接文本的右方括号后立即使用一组常规括号。在括号内,将链接指向的URL以及链接的可选标题放在引号中。例如:

This is [an example](http://example.com/"Title")inline link。

[This link](http://example.net/)has no title attribute。

将产生: This is an example inline link。(<p>This is <a href=“http://example.com/"title"="Title">) This link has no title attribute.(<p><a href="http://example.net/">This link</a> has no)

内部链接在链接文本的右方括号后立即使用一组常规括号,括号内选择需要跳转到的标题。

Command(on Windows: Ctrl) + Click This link 将跳转到标题“空格”。

[This link](#空格)
这是一个页面内的跳转,简书尚不支持,Typora、github支持。

引用链接使用第二组方括号,在方括号内放置您选择的用于标识链接的标签。

This is [an example][id] reference-style link.
Then, anywhere in the document, you define your link label on a line by itself like this:
[id]: http://example.com/  "Optional Titlejian Here"
引用链接简书尚不支持,Typora支持。

Search

    Table of Contents