1. 标题
#一级标题
##二级标题
###三级标题
####四级标题
#####五级标题
######六级标题
2. 无序列表:
- 列表1
- 列表2
- 列表3
- 列表1
- 列表2
- 列表3
3. 有序列表
1. 列表1
2. 列表2
3. 列表3
- 列表1
- 列表2
- 列表3
4. 链接和图片
[百度](http://www.baidu.com)
![](http://upload-images.jianshu.io/upload_images/2294180-b6ae1208d1a9253b.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
5. 引用
> 玲珑骰子安红豆,入骨相思知不知。
> 人生若只如初见
> 何事秋风悲画扇
玲珑骰子安红豆,入骨相思知不知。
人生若只如初见
何事秋风悲画扇
6. 粗体&斜体
**粗体** *斜体*
粗体 斜体
7. 代码引用
`echo '单行代码的引用';`
echo '单行代码的引用';
多行代码(```前三后三```)
<?php
function decodeUnicode($str)
{
return preg_replace_callback('/\\\\u([0-9a-f]{4})/i', create_function( '$matches', 'return mb_convert_encoding(pack("H*", $matches[1]), "UTF-8", "UCS-2BE");' ), $str);
}
$array = array(
'name' => 'lv简简',
'gender' => '女',
'age' => 20
);
echo json_encode($array); // {"name":"lv\u7b80\u7b80","gender":"\u5973","age":20}
echo decodeUnicode(json_encode($array)); // {"name":"lv简简","gender":"女","age":20}
?>
8. 表格
居左 |居中 |居右
-----------|:----------:|-----------:
左对齐 |居中对齐|右对齐
left|center|right
居左 | 居中 | 居右 |
---|---|---|
左对齐 | 居中对齐 | 右对齐 |
left | center | right |
9. 插入图片
![image.png](http://upload-images.jianshu.io/upload_images/2294180-eeed8df92d96bbe2.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)