CCRogerWang / blog

A blog about iOS, Python,Machine Learning
1 stars 1 forks source link

第一篇就先來看Styling with markdown is supported吧 #1

Open CCRogerWang opened 7 years ago

CCRogerWang commented 7 years ago

我其實不熟markdown,所以這一篇是我學習的過程.這篇是教材.

Headers

code example:
# 這是一個 h1 tag
## 這是一個 h2 tag
### 這是一個 h3 tag
#### 這是一個 h4 tag
##### 這是一個 h5 tag
###### 這是一個 h6 tag

這是一個 h1 tag

這是一個 h2 tag

這是一個 h3 tag

這是一個 h4 tag

這是一個 h5 tag
這是一個 h6 tag

Emphasis

code example:
*表示成斜體*
_表示成斜體_
**表示成粗體**
__表示成粗體__

表示成斜體 表示成斜體 表示成粗體 表示成粗體

Lists

Unordered

code example:
* 物件 1
* 物件 2
  * 物件 2a
  * 物件 2b

Ordered

code example:
1. 物件 1
1. 物件 2
   1. 物件 2a 
   1. 物件 2b
  1. 物件 1
  2. 物件 2
    1. 物件 2a
    2. 物件 2b

      Images

      code example:
      ![Apple](https://image.flaticon.com/icons/png/128/164/164952.png)

      Apple

      Links

      code example:
      [GitHub](http://github.com)

      GitHub

Blockquotes

code example:
> 你好
> 謝謝

你好 謝謝

Inline code

```python
print("python hello world!")
```

print("python hello world!")