Markdown 語法教學


Markdown 語法教學

H1

# H1

H2

## H2

H3

### H3
H4
##### H4
H5
##### H5
H6
###### H6

粗體

**粗體** 

斜體

*斜體* 
or
_斜體_

刪除線

~~刪除線~~

分隔線


---
or
***

無序列表

  • item1
  • item2
    • item2.1
    • item2.2
      • item2.2.1
      • item2.2.2
  • item3
- item1
- item2
    - item2.1
    - item2.2
        - item2.2.1
        - item2.2.2
- item3

有序列表

  1. item1
  2. item2
    1. item2.1
    2. item2.2
      1. item2.2.1
      2. item2.2.2
  3. item3
1. item1
1. item2
    1. item2.1
    1. item2.2
        1. item2.2.1
        1. item2.2.2
1. item3

CheckBox

  • item1
  • item2
    • item2.1
    • item2.2
      • item2.2.1
      • item2.2.2
  • item3
- [x] item1
- [ ] item2
    - [x] item2.1
    - [x] item2.2
        - [x] item2.2.1
        - [ ] item2.2.2
- [ ] item3

區塊語法

小```區塊```語法

程式碼區塊

val hello = "hello"
print(hello)
    ```
    val hello = "hello"
    print(hello)
    ```
    ```java
    val hello = "hello"
    print(hello)
    ```

引用

引用

> 引用

階層式引用

引用

引用

引用

引用

> 引用
>> 引用
>>> 引用
>>>> 引用

圖片

![](/images/gallery/1.jpg)

Table

Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1
| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |

GOOGLE

[GOOGLE](https://www.google.com)

WRITTEN BY
Aki

熱愛寫code的開發者,專注於 Android 手機 Native App 開發,對於 IOS 也有涉略。閒暇之餘也學習 JavaScript 等前端框架