enter3017sky / mentor-program-2nd-blog

MTR02 學習紀錄
1 stars 2 forks source link

[筆記] Markdown 語法 #4

Open enter3017sky opened 6 years ago

enter3017sky commented 6 years ago

我比較常用的

標題(Heading) \

標題(Heading) \

標題(Heading) \

標題(Heading) \

標題(Heading) \
標題(Heading) \

分隔線 --- or ***


字體

_斜體_ *斜體
斜體
斜體*

__粗體 **粗體** 粗體__ 粗體

\~刪除線\~ ~刪除線~

無序列表:使用 - or *

- 我是一段無序列表的介紹
   - 我是一段無序列表的介紹
      - 我是一段無序列表的介紹
      - 我是一段無序列表的介紹

任務列表

- [x] Finish my changes
- [ ] Push my commits to GitHub
- [ ] Open a pull request

引用 >

> 引用

> 很多很多引用
> 很多很多引用
> 很多很多引用

> 引用

> 很多很多引用 > 很多很多引用 > 很多很多引用

`程式碼`反引號

` Inline code ` with backticks 

Inline code with backticks

程式碼區塊 用三個反引號

``` function hello(n) { console.log("Hello World!") } hello() ```

function hello(n) {
   console.log("Hello World!")
}
hello()

加上```javascript更好看

function hello(n) {
   console.log("Hello World!")
} 
  hello()

插入圖片

![Image](url)

Image