一級標題
二級標題
三級標題
四級標題
五級標題
六級標題
- 無序列表1
- 無序列表2
- 無序列表3
- 有序列表1
- 有序列表2
- 有序列表3
引用開始
說點啥呢
我也不知道啊
我是二級引用
你是不是二啊
我不二
二級引用最后
引用完成
粗體 或 強調 斜體
Paste_Image.png
Paste_Image.png
接下來是重磅推出的代碼塊···啊哈哈哈哈
/// 獲取當天 0時0分0秒的時間
+ (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簡介
Markdown 是一種輕量級標記語言渗饮,它允許人們使用易讀易寫的純文本格式編寫文檔,然后轉換成格式豐富的HTML頁面。 —— 維基百科
正如您在閱讀的這份文檔朵纷,它使用簡單的符號標識不同的標題垄琐,將某些文字標記為粗體或者斜體抡草,創(chuàng)建一個鏈接缸濒。
代碼塊
@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)建 行內公式(現(xiàn)不支持
):
$\Gamma(n) = (n-1)!\quad\forall n\in\mathbb N$锅知。
塊級公式:
$$ 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
以及時序圖(現(xiàn)不支持
):
Alice->Bob: Hello Bob, how are you?
Note right of Bob: Bob thinks
Bob-->Alice: I am good thanks!
復選框(現(xiàn)不支持
)
使用 - [ ]
和 - [x]
語法可以創(chuàng)建復選框,實現(xiàn) todo-list 等功能越锈。例如:
- [x] 已完成事項
- [ ] 待辦事項1
- [ ] 待辦事項2