Markdown简单语法学习

Markdown 是一种轻量级的「标记语言」

windows编辑工具推荐 markdownpad

osx 编辑工具推荐 Mou

一级标题 # 一级标题

二级标题 ## 二级标题

无序列表

  • 1 * 1
  • 2 * 2
  • 3 * 3
  • 4 * 4

有序列表

  1. 1 1. 1
  2. 2 2. 2
  3. 3 3. 3
  4. 4 4. 4

引用

这里是引用 > 这里是引用

图片与链接

Arron Blog [Arron Blog](http://www.jsfunny.com)

Markdown简单语法学习_第1张图片
Blog icon

![Blog icon](http://upload-images.jianshu.io/upload_images/2189803-e244baddf18e2253.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

粗体与斜体

这里是粗体 **这里是粗体**

这里是斜体 *这里是斜体*

表格

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

小段代码框 使用 ```

console.log('hello world');

大片代码 :使用Tab和四个空格

console.log('hello world');

分割线

*** 三个*

你可能感兴趣的:(Markdown简单语法学习)