MarkDown

一级标题

二级标题

六级标题
# This is an H1

## This is an H2

###### This is an H6

这是引用

引用嵌套

> 这是引用
	>引用嵌套
>

无序列表

  • 红色
  • 绿色
  • 蓝色

有序列表

  1. 红色
  2. 绿色
  3. 蓝色
## un-ordered list
*   Red
*   Green
*   Blue

## ordered list
1.  Red
2. 	Green
3.	Blue

任务列表

##Tesk List
- [ ] a task list item
- [x] completed

代码块

​```ruby
语法高亮
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html
​```
##代码块


语法高亮
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html

表格

First Header Second Header
Content Cell Content Cell
Content Cell Content Cell
##表格
| First Header  | Second Header |
| ------------- | ------------- |
| Content Cell  | Content Cell  |
| Content Cell  | Content Cell  |

左右居

Left-Aligned Center Aligned Right Aligned
col 3 is some wordy text $1600
col 2 is centered $12
zebra stripes are neat $1
| Left-Aligned  | Center Aligned  | Right Aligned |
| :------------ |:---------------:| -----:|
| col 3 is      | some wordy text | $1600 |
| col 2 is      | centered        |   $12 |
| zebra stripes | are neat        |    $1 |

脚注

You can create footnotes like this[^footnote].

[^footnote]: Here is the *text* of the **footnote**.

图片和网址

![图片描述](图片路径或图片url)
[网址描述](网址)

这里有图

这是网址


其他

加粗 斜体 下划线 高亮

**加粗**    *斜体*    <u>下划线</u>   ==高亮==   <!--注释-->
posted @ 2018-09-07 23:10  图图突tu  阅读(170)  评论(0编辑  收藏  举报