标题
- H1 :
Header 1 # Header1
or
Header 1
Header 1
===
- H2 :
Header 2 ## Header 2
or
Header 2 (必须和上边隔一行,要不然会被视为分隔线)
Header 2 (必须和上边隔一行,要不然会被视为分隔线)
---
- H3 :
Header 3 ### Header 3
- H4 :
Header 4 #### Header 4
- H5 :
Header 5 ##### Header 5
- H6 :
Header 6 ###### Header 6
列表
- 无序列表(使用星号、加号或减号)
- First
- Second
- Third
- 有序列表(用数字接着一个英文句点)
- First
- Second
- Third
文本样式
- 加粗 :Bold
**Bold**
or__Bold__
- 斜体字 :Italics
*Italics*
or_Italics_
- 斜粗体 :text
***text***
or___text___
(如果要在文字前后直接插入普通的星号或底线,用反斜线(转义符):*this text is surrounded by literal asterisks*\*this text is surrounded by literal asterisks\*
) - 小型文本 :<small>文本内容</small>
<small>文本内容</small>
- 删除线 :
text~~text~~
- 单行长文字
阿斯顿撒娇的哈里斯卡大师级发了十几封卡上佛佛阿司法局阿深办发哈深爬服非圣诞节和数据库的哈萨克就等哈说考虑到哈市开发商坎大哈可升级大飞嘎斯常骄傲深阿哦哈非常怕啥
段首加加6个空格或3个Tab - 引用 :
大楚兴,陈胜王!
> 大楚兴,陈胜王!
(和下文要隔一行)
区块引用可以嵌套
This is the first level of quoting.
This is nested block quote.
Back to the first level.
> This is the first level of quoting.
> > This is nested block quote.
>
> Back to the first level.~~~
**引用的区块内也可以使用其他的 Markdown 语法**
> ## 这是一个标题。
>
> 1. 这是第一行列表项。
> 2. 这是第二行列表项。
>
> 给出一些例子代码:
>
> return shell_exec("echo $input | $markdown_script");
```
> ## 这是一个标题。
>
> 1. 这是第一行列表项。
> 2. 这是第二行列表项。
>
> 给出一些例子代码:
>
> return shell_exec("echo $input | $markdown_script");```
* 内嵌代码/高亮 :`alert('Hello World');` `` `alert('Hello World');` `` (如果高亮的内容包含 \` 号,可以用 \`` 包裹起来)
* 代码块 :(是用 ``` 或 ~~~ 包裹的) or 每行前加6个空格或3个Tab
lazy var formatter: NSDateFormatter = {
let dateFormatter = NSDateFormatter()
dateFormatter.formatterBehavior = .Behavior10_4
dateFormatter.dateFormat = "HH:mm:ss.SSS"
return dateFormatter
}()
* 分割线 :
___
`___` or `***`
* 表格
Woow | Woow | Woow
:-----|:-----:| ----:
Woow | Woow | Woow
Woow | Woow | Woow
Woow | Woow | Woow
```
Woow | Woow | Woow
:-----|:-----:| ----:
Woow | Woow | Woow
Woow | Woow | Woow
Woow | Woow | Woow```
左对齐是:--- 居中对齐是:---: 右对齐是---:
#链接
* 网络链接 :[Baidu](https://www.baidu.com) `[Baidu](https://www.baidu.com)` or
```
[Baidu][id]
[id]:https://www.baidu.com ```
* 本地链接 :[link text](file:///Users/mac/Desktop/Test/README.md "link text") `[link text](file:///Users/mac/Desktop/Test/README.md "link text")`
* 电子邮件 :<1114390581@qq.com> `<1114390581@qq.com>`
* 网络图片 :![德鲁伊](http://upload-images.jianshu.io/upload_images/1334313-93fdf2ca0d08b8ca.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
`![德鲁伊](http://upload-images.jianshu.io/upload_images/1334313-93fdf2ca0d08b8ca.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)`
* 本地图片 :![新浪](http://upload-images.jianshu.io/upload_images/1334313-76fcda5b752b9a1c.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
`![新浪](http://upload-images.jianshu.io/upload_images/1334313-76fcda5b752b9a1c.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)` or
`其实直接拖就好了`
# 脚注
\```
BlaBlaBla...这是一段脚注[^footer1],接着BlaBlaBla...
......
[^footer1]:这是脚注内容,Blablabla
```
BlaBlaBla...这是一段脚注[^footer1],接着BlaBlaBla...
......
[^footer1]:这是脚注内容,Blablabla```