jotting

Markdown Learning

程式碼區域 - Code and Syntax Highlighting

1
2
3
4
5
6
7
8
9
```javascript 
function getSize(){
if( typeof( window.innerWidth ) == 'number' ) {
myWidth = window.innerWidth;
} else if( document.documentElement && document.documentElement.clientWidth) {
myWidth = document.documentElement.clientWidth;
};
};
```
1
2
3
4
5
6
7
function getSize(){
if( typeof( window.innerWidth ) == 'number' ) {
myWidth = window.innerWidth;
} else if( document.documentElement && document.documentElement.clientWidth) {
myWidth = document.documentElement.clientWidth;
};
};
Remark:

如何在Code blocks裡再寫入一個Code blocks
markdownin


標題 - Header

1
2
3
4
5
6
7
8
9
10
11
12
# H1
## H2
### H3
#### H4
##### H5
###### H6

H1
======

H2
------

H1

H2

H3

H4

H5
H6

H1

H2


1
2
3
4
5
6
7
8
9
10
[連結名稱](https://www.google.com)
<https://www.google.com>

[參考文本][參考文本 reference text]
[數字定義][1]
或是連結本身[連結].

[參考文本 reference text]: https://www.google.com
[1]:https://www.google.com
[連結]: https://www.google.com

連結名稱
https://www.google.com

[參考文本][參考文本 reference text]
[代號][1]
或是連結本身 [連結].
[參考文本 reference text]: https://www.google.com
[1]: https://www.google.com
[連結]: https://www.google.com


強調 - Emphasis

1
2
3
4
5
6
7
8
9
*斜體*   _斜體_

**粗體** __粗體__

***粗斜*** ___粗斜___ __*粗斜*__ _**粗斜**_

**粗體與_粗斜體_**

~~刪除字~~

斜體 _斜體_

粗體 粗體

粗斜 _粗斜_ 粗斜 粗斜

粗體與粗斜體

刪除字


清單 - Lists

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
1. 有序列表
2. 列出所有元素:
- 無序列表 元素A
1. A的有序子列表
1. A的有序子列表
- 前面加四個空格
3. 列表裡的多段換行:
前面加四個空格,
這樣換整體的格式才不會亂
4. 列表裡引用:
>前面加四個空格
>前面加四個空格
5. 列表裡代碼段:
```
Code
```
* 無序列表 用星號
- 減號
+ 加號
  1. 有序列表
  2. 列出所有元素:
    • 無序列表 元素A
      1. A的有序子列表
      2. A的有序子列表
    • 前面加四個空格
  3. 列表裡的多段換行:
    前面加四個空格,
    這樣換整體的格式才不會亂
  4. 列表裡引用:

    前面加四個空格
    前面加四個空格

  5. 列表裡代碼段:
    1
    Code
  • 無序列表 用星號
  • 減號
  • 加號

圖片 - Image

1
2
3
4
5
6
7
Inline-style: 
![alt text](/assets/images/ManWithQuestion.jpg "hover text")

Reference-style:
![alt text][logo]

[logo]: /assets/images/ManWithQuestion.jpg "hover text"

Inline-style:
alt text
Reference-style:
alt text


表格 - Table

1
2
3
4
5
6
7
8
9
10
| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |

Markdown | Less | Pretty
--- | --- | ---
*斜體* | `Code` | **粗體**
1 | 2 | 3
Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1
Markdown Less Pretty
斜體 Code 粗體
1 2 3

其他

1
2
3
4
5
6
7
8
分隔線 - Horizontal Rule
---
***
___

引用 - Blockquotes
> 1
> 2

分隔線 - Horizontal Rule




引用 - Blockquotes

1
2


參考資料 - Reference

Markdown-Cheatsheet
segmentfault

線上編輯器 - Online Editor

stackedit
dillinger