lshgdut / lshgdut-notes.github.io

note for lsh
0 stars 0 forks source link

github的markdown用法 #2

Open lshgdut opened 10 years ago

lshgdut commented 10 years ago

段落换行

写成两行即可,原生md需要俩空格示意,如

Roses are red
Violets are blue

段落标题

使用1-6个 # 表示

# The largest heading (an <h1> tag)
## The second largest heading (an <h2> tag)
…
###### The 6th largest heading (an <h6> tag)

块标记

In the words of Abraham Lincoln:
> Pardon my french

加粗或者斜体

*This text will be italic*
**This text will be bold**
**Everyone _must_ attend the meeting at 5 o'clock today.**

列表

无序列表

使用 * 或者 - 打头

* Item
* Item
* Item

- Item
- Item
- Item

有序列表

使用数字打头

1. Item 1
2. Item 2
3. Item 3

链接

直接输入url,会自动识别,或者 使用text的格式

www.github.com
[Visit GitHub!](www.github.com)

删除线

GFM增加的特性,在标准md是没有的

~~Mistaken text.~~

代码块

Here's an example:

lshgdut commented 10 years ago

Roses are red Violets are blue

lshgdut commented 10 years ago

The largest heading (an

tag)

The second largest heading (an

tag)

The 6th largest heading (an
tag)