实践Markdown

标题


三级标题

四级标题

源码:

1
2
### 三级标题
#### 四级标题

有序和无序列表


  • 无序列表1
  • 无序列表2
  • 无序列表3

源码:

1
2
3
* 无序列表1
* 无序列表2
* 无序列表3
  1. 有序列表1
  2. 有序列表2
  3. 有序列表3

源码:

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

引用、链接和图片


此处是引用

源码:

> 此处是引用

baidu的链接

源码:

1
[baidu的链接](http://www.baidu.com)

Mou icon

源码:

1
![Mou icon](http://mouapp.com/Mou_128.png)

粗体、斜体、删除线、下划线


粗体

源码:

1
**粗体**

斜体

源码:

1
*斜体*

删除线

源码:

1
~~删除线~~

下划线

源码:

1
<u>下划线</u>

表格


Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1
zebra stripes are neat $1
zebra stripes are neat $1

源码:

1
2
3
4
5
6
7
| Tables        |      Are      |  Cool |
| :------------ | :-----------: | ----: |
| col 3 is      | right-aligned | $1600 |
| col 2 is      |   centered    |   $12 |
| zebra stripes |   are neat    |    $1 |
| zebra stripes |   are neat    |    $1 |
| zebra stripes |   are neat    |    $1 |

代码行和代码块


代码行

源码:

1
`代码行`

github flavored markdown

1
2
3
grant codebase "file:${java.home}/../lib/tools.jar" {
 permission java.security.AllPermission;
};

源码

1
2
3
4
5
​```
grant codebase "file:${java.home}/../lib/tools.jar" {
 permission java.security.AllPermission;
};
​```

xml code github flavored markdown

1
2
3
4
5
<dependency>
    <groupId>com.allinpay.its</groupId>
    <artifactId>framework-jms-consumer</artifactId>
    <version>1.0.0</version>
</dependency>

源码:

1
2
3
4
5
6
7
​```xml
<dependency>
    <groupId>com.allinpay.its</groupId>
    <artifactId>framework-jms-consumer</artifactId>
    <version>1.0.0</version>
</dependency>
​```

水平线


源码:

1
***

checkbox

  • 没勾选
  • 勾选 源码: ```markdown
  • 没勾选
  • 勾选 ```