一級(jí)標(biāo)題
二級(jí)標(biāo)題
三級(jí)標(biāo)題
四級(jí)標(biāo)題
五級(jí)標(biāo)題
六級(jí)標(biāo)題
- 無(wú)序列表1
- 無(wú)序列表2
- 無(wú)序列表3
- 有序列表1
- 有序列表2
- 有序列表3
引用開(kāi)始
說(shuō)點(diǎn)啥呢
我也不知道啊
我是二級(jí)引用
你是不是二啊
我不二
二級(jí)引用最后
引用完成
粗體 或 強(qiáng)調(diào) 斜體
Paste_Image.png

Paste_Image.png
接下來(lái)是重磅推出的代碼塊···啊哈哈哈哈
/// 獲取當(dāng)天 0時(shí)0分0秒的時(shí)間
+ (NSDate *)getCurrentDay000 {
NSDate *today = [NSDate date];
NSDateFormatter *df = [[NSDateFormatter alloc] init];
df.timeZone = [NSTimeZone timeZoneWithAbbreviation:@"UTC"];
df.dateFormat = @"YYYY-MM-dd";
NSString *todayStr = [df stringFromDate:today];
NSDate *today000 = [df dateFromString:todayStr];
return today000;
}

Paste_Image.png
歡迎使用MarkDown
Markdown簡(jiǎn)介
Markdown 是一種輕量級(jí)標(biāo)記語(yǔ)言,它允許人們使用易讀易寫(xiě)的純文本格式編寫(xiě)文檔,然后轉(zhuǎn)換成格式豐富的HTML頁(yè)面。 —— 維基百科
正如您在閱讀的這份文檔,它使用簡(jiǎn)單的符號(hào)標(biāo)識(shí)不同的標(biāo)題,將某些文字標(biāo)記為粗體或者斜體,創(chuàng)建一個(gè)鏈接。
代碼塊
@requires_authorization
def somefunc(param1='', param2=0):
'''A docstring'''
if param1 > param2: # interesting
print 'Greater'
return (param2 - param1 + 1) or None
class SomeClass:
pass
>>> message = '''interpreter
... prompt'''
LaTeX 公式
可以創(chuàng)建 行內(nèi)公式(現(xiàn)不支持):
$\Gamma(n) = (n-1)!\quad\forall n\in\mathbb N$。
塊級(jí)公式:
$$ x = \dfrac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$
表格
| Item | Value | Qty |
|---|---|---|
| Computer | 1600 USD | 5 |
| Phone | 12 USD | 12 |
| Pipe | 1 USD | 234 |
流程圖(現(xiàn)不支持)
st=>start: Start
e=>end
op=>operation: My Operation
cond=>condition: Yes or No?
st->op->cond
cond(yes)->e
cond(no)->op
以及時(shí)序圖(現(xiàn)不支持):
Alice->Bob: Hello Bob, how are you?
Note right of Bob: Bob thinks
Bob-->Alice: I am good thanks!
復(fù)選框(現(xiàn)不支持)
使用 - [ ] 和 - [x] 語(yǔ)法可以創(chuàng)建復(fù)選框,實(shí)現(xiàn) todo-list 等功能。例如:
- [x] 已完成事項(xiàng)
- [ ] 待辦事項(xiàng)1
- [ ] 待辦事項(xiàng)2