(请直接看原链接:http://www.cnblogs.com/suziwen/p/4248241.html)
这是 H1 一级标题
------
这是 H2 二级标题
======
# 这是 H1 一级标题
## 这是 H2 二级标题
### 这是 H3 三级标题
#### 这是 H4 四级标题
##### 这是 H5 五级标题
###### 这是 H6 六级标题
快捷键: [ctrl + h]
* 项目1
  * 子项目1.1
  * 子项目1.2
    * 子项目1.2.1
* 项目2
* 项目3
+ 项目1
  + 子项目1.1
  + 子项目1.2
    + 子项目1.2.1
+ 项目2
+ 项目3
- 项目1
  - 子项目1.1
  - 子项目1.2
    - 子项目1.2.1
- 项目2
- 项目3
快捷键: [ctrl + u]
1. 项目1
2. 项目2
3. 项目3
    1. 项目3.1
    2. 项目3.2
1. 项目1
1. 项目2
1. 项目3
    1. 项目3.1
    1. 项目3.2
58. 项目5
2. 项目6
快捷键: [ctrl + o]
[链接名称](链接地址)
[链接名称][1]
[1] : 链接地址

![名称][1]
[1] : 链接地址
**这是文字粗体格式**
__这是文字粗体格式__
*这是文字斜体格式*
_这是文字斜体格式_
> 第一行引用文字
> 第二行引用文字
***
First Header  | Second Header
------------- | -------------
Content Cell  | Content Cell
Content Cell  | Content Cell
    `var x = "hello world"`
    ```javascript
    var a = "hello world";
    var b = "good luck";
    ```
系统将自动根据内容,将地址转换成超链接格式
http://markdown.xiaoshujiang.com
<div class="hey">Hello world</div>
~~在文字上添加删除线~~
[toc]
++插入的文字++
==被记号的文字==
上角文字: 19^th^
下角文字: H~2~O
系统将自动替换下列文字,转换成排版系统使用的符号
(c) (C) (r) (R) (tm) (TM) (p) (P) +-
The HTML specification
is maintained by the W3C.
*[HTML]: Hyper Text Markup Language
*[W3C]:  World Wide Web Consortium
- [ ] 未完成事项
- [x] 完成事项
脚注[^1x]
[^1x]: 脚注的用法
苹果
: 一种水果
: 一种品牌,计算机,手持设备
桔子
: 一种水果
这是行内公式`$ \Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,. $`
    ```mathjax
    \Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,.
    ```
    ```flow
    st=>start: 开始
    e=>end: 结束
    op=>operation: 操作步骤
    cond=>condition: 是 或者 否?
    
    st->op->cond
    cond(yes)->e
    cond(no)->op
    ```
    ```sequence
    小明->小李: 你好 小李, 最近怎么样?
    Note right of 小李: 小李想了想
    小李-->小明: 还是老样子
    ```
小书匠编辑器提供了附件管理功能,用户可通过./对附件的引用,比如图片./jiangzhu.jpg。附件的上传需通过工具栏的插入图片ctrl+g,插入视频ctrl+shift+v,插入音频ctrl+shift+a,插入附件ctrl+shift+t功能键进行操作。
%[名称](链接地址)
%[名称][1]
[1] : 链接地址

![名称][1]
[1] : 链接地址
=[名称](链接地址)
=[名称][1]
[1] : 链接地址
元数据必须放置在每篇文章的开头才能生效。如果文章里有元数据时,系统将自动以元数据的标题为准,用户通过文章信息的维护界面修改的标题及tags将会被覆盖掉。
---
title: 小书匠语法使用手册
tags: 小书匠,语法,MARKDOWN,帮助
--- 
数据格式为:{"data": [], "options":{}}
系统使用jquery.parseJSON()函数进行解析,因此代码必须符合该函数的要求才能正常解析。
    ```plot
    {
    "data": [ [[0, 0], [1, 1]] ],
    "options": { "yaxis": { "max": 1 } }
    }
    ```

http://www.github.com/suziwen/markdownxiaoshujiang
http://www.xiaoshujiang.com
qq交流群: 310113380
The HTML specification
is maintained by the W3C.
© © ® ® ™ ™ § § ±


| First Header | Second Header | 
|---|---|
| Content Cell | Content Cell | 
| Content Cell | Content Cell | 
这是文字粗体格式
这是文字粗体格式
这是文字斜体格式
这是文字斜体格式
在文字上添加删除线
插入的文字
被记号的文字
上角文字: 19th
下角文字: H2O
链接
第一行引用文字
第二行引用文字
var x = "hello world"
/**
 * @author John Smith <john.smith@example.com>
 * @version 1.0
*/
package l2f.gameserver.model;
import java.util.ArrayList;
public abstract class L2Character extends L2Object {
  public static final Short ABNORMAL_EFFECT_BLEEDING = 0x0_0_0_1; // not sure
  public void moveTo(int x, int y, int z) {
    _ai = null;
    _log.warning("Should not be called");
    if (1 > 5) {
      return;
    }
  }
  /** Task of AI notification */
  @SuppressWarnings( { "nls", "unqualified-field-access", "boxing" })
  public class NotifyAITask implements Runnable {
    private final CtrlEvent _evt;
    List<String> mList = new ArrayList<String>()
    public void run() {
      try {
        getAI().notifyEvent(_evt, _evt.class, null);
      } catch (Throwable t) {
        t.printStackTrace();
      }
    }
  }
}
这是行内公式


脚注的用法 ?
原文:http://www.cnblogs.com/jianyungsun/p/6344882.html