分享到plurk 分享到twitter 分享到facebook

sandbox

基本語法

文字格式

粗體

斜體

刪除線

**粗體**
*斜體*
~~刪除線~~
上^標^
下~標~

標題

# Heading 1
## Heading2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Heading 1, 2也可用以下方式替代

Heading 1
==================

Heading 2
----------------------------

水平線


****

可用-或_替代

清單

符號清單

  • a
  • b
  • c
- a
- b
- c

也可使用 * 或 +

編號清單

  1. a
  2. b
  3. c
1. a
2. b
3. c

也可使用 #. 或 1)

巢狀清單

  • a
    1. c
      • d
* a
    1. b
        * c

需為 tab 或 4 spaces

表格

表格有四種方式

以下提供其中兩種的範例

範例一:

Right Left Default Center
12 12 12 12
123 123 123 123
1 1 1 1
| Right | Left | Default | Center |
|--------:|:-------|-----------|:------:|
|   12  |  12  |    12   |    12  |
|  123  |  123 |   123   |   ```123```  |
|    1  |    1 |     1   |     1  |

此方式優點在於可以選擇左右對齊或置中,且表格不需對齊,但是表格無法多行

範例二:

Fruit Price Advantages
Bananas $1.34
  • built-in wrapper
  • bright color
Oranges $2.10
  • cures scurvy
  • tasty
+---------------+---------------+--------------------+
| Fruit         | Price         | Advantages         |
+===============+===============+====================+
| Bananas       | $1.34         | - built-in wrapper |
|               |               | - bright color     |
+---------------+---------------+--------------------+
| Oranges       | $2.10         | - cures scurvy     |
|               |               | - tasty            |
+---------------+---------------+--------------------+

此方式優點為表格可以多行,缺點為無法選擇左右對齊,且表格需排列整齊,建議使用等寬字體編輯

其他表格用法請參考http://pandoc.org/demo/example9/pandocs-markdown.html

連結與圖片

這個是成大資訊系的網站

http://web.ncku.edu.tw

Hashtag to 清單

image

這個是[成大資訊系](http://www.csie.ncku.edu.tw/)的網站
<http://web.ncku.edu.tw>
[Hashtag to 清單](#清單)
![image](/embedded/logo-2012-small.png "Jserv like a boss")\

程式碼區塊

int add (int a, int b) {
    return a + b;
}
~~~ {.c }
int add (int a, int b) {
    return a + b;
}
~~~

“~”長度需大於三,也可用```替代

可於{}內加入 .numberLines 以及 .startFrom=“20”來顯示行號

Math

可使用LaTeX,在LaTeX語法左右各加一個$ (不可空格)

\(\pi = 4\int_0^1 \frac{1}{1 + x^2} \, \mathrm{d}x.\)

$\pi = 4\int_0^1 \frac{1}{1 + x^2} \, \mathrm{d}x.$

Reference

http://pandoc.org/demo/example9/pandocs-markdown.html