Skip to content

Instantly share code, notes, and snippets.

@binjoo
Created October 22, 2012 04:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save binjoo/3929704 to your computer and use it in GitHub Desktop.
Save binjoo/3929704 to your computer and use it in GitHub Desktop.
HTML:Markdown语法速记
标题
# 这是 H1 <一级标题>
## 这是 H2 <二级标题>
### 这是 H3 <三级标题>
#### 这是 H4 <四级标题>
##### 这是 H5 <五级标题>
###### 这是 H6 <六级标题>
文字格式
**这是文字粗体格式**
*这是文字斜体格式*
~~在文字上添加删除线~~
无序列表
* 项目1
* 项目2
* 项目3
有序列表
1. 项目1
2. 项目2
3. 项目3
* 项目1
* 项目2
其它
图片
![图片名称](http://gitcafe.com/image.png)
链接
[链接名称](http://gitcafe.com)
引用
> 第一行引用文字
> 第二行引用文字
水平线
***
代码
`<hello world>`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment