Markdown基本语法总结

斜体:*Italic*_Italic_Italic

**Bold**__Bold__Bold

# Heading 1Heading 1

=========

Heading 1

## Heading 2Heading 2

---------

Heading 2

[Link](http://a.com)[Link][1]

[1]: http://b.org

Link

![Image](http://url/a.png)![Image][1]

[1]: http://url/b.jpg

> Blockquote Blockquote

* List

* List

* List

- List

- List

- List

List

List

List

1. One

2. Two

3. Three

1) One

2) Two

3) Three

One

Two

Three

Horizontal Rule

---

Horizontal Rule

***

Horizontal Rule

`Inline code` with backticks Inline code with backticks

```

# code block

print '3 backticks or'

print 'indent 4 spaces'

```

····# code block

····print '3 backticks or'

····print 'indent 4 spaces'

# code block 

print '3 backticks or' 

print 'indent 4 spaces'

你可能感兴趣的:(Markdown基本语法总结)