Markdown语法
Markdown语法
基本
斜体
粗体
++下划线++
删除
高亮
上标1
下标1
引用
列表
无序
- list1
- list2
有序
- list1
- list2
Task
代码
- 行内
这是行内代码int i
,that's it. - 代码块
@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'''
公式
- 行内公式:\(\Gamma(n) = (n-1)!\quad\forall n\in\mathbb N\)
- 块级公式:\[x = \dfrac{-b \pm \sqrt{b^2 - 4ac}} {2a} \]\[x_1 = \dfrac{1}{2}, x_2 = 1 \]
表格
table1
name | age | gender | money |
---|---|---|---|
alpha | 30 | robot | $4,000 |
beta | 30 | bird | $800 |
theta | 30 | undefined | $0 |
gamma | 30 | undefined | $0 |
table2
name | age | gender | money |
---|---|---|---|
rhio | 384 | robot | $3,000 |
haroo | .3 | bird | $430 |
jedi | ? | undefined | $0 |
链接
- 行内链接:点我
- 参考式链接:[点我][1]
[1]:www.baidu.com "百度"
图片
- 行内:
- 参考式:
![][md] - Image Style(HFM)
右图![Mark Down](md.jpg "md" "width:100px;float:right")
![i][logo]
[md]: md.png
[logo]: md.jpg "Logo" "width:100px"
注释
脚注[1]
水平线
分节:- - - 或 ---
分页:* * * 或 ***
分段:_ _ _ 或 ___
footnote ↩︎