Target:Introduce some basic methods,like changing word size,inputing picture,switching line with blank,and making a list.
大多數取自:makedown風格
###字體大小 word size :
語法: #
(隨著#越多,字體越小)
###換行 switch line :
語法: __
(兩個空格,這裡以兩條底線代表)
###表格 make a list :
語法: |
(就排直的就可以),第二排就是設定至中至右至左。
舉例: (冒號:代表至右還是左,如果兩邊都有就是至中)
| 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 |
###超連結 url :
語法: [連結名]/(網址)
(把中間那個'/'去掉)
舉例:這是google
###條列式 :
語法: +__名子
(__為1個空格)
舉例:(創完第一個,按下enter就會自動產生第2個)
- 粒子1
- 粒子2
- 粒子3
###粗體與斜體 :
語法: 在字兩旁加上** (粗)或是* (斜)
舉例:
我是粗體字喔
我則是斜體字喔
語法:![Alt text]/(http://full/path/to/img.jpg "Optional title") (同樣中間的'/'拿掉)
舉例:
語法:<"code"><"/code">
(把裡面那個""拿掉)
舉例:
printf("hello world!!");
語法:```
(頭尾都要加)
舉例:
import counter
import jieba
a=12
b=8
print(a+b)
####持續更新中... To be continue...