## Markdown 使用示例 ##
## 目錄 ##
用 `[TOC]`來生成目錄:
[toc]
- [看云編輯器使用手冊](http://www.hmoore.net/kancloud/help/41501#_457)
- [參考Markdown的常用語法(個人總結)](https://www.jianshu.com/p/82e730892d42)
* 無序標題
*斜體*
**黑體**
>這里是引用 ,須與列表區分開
### 插入圖片 ###

[百度](http://baidu.com)


### 表格 ###
| 項目 | 內容
| - |:-
|1 | xyz
>代碼
**
需要引用代碼時,如果引用的語句只有一段,不分行,可以用
` 將語句包起來。`
如果引用的語句為多行,可以將
```
置于這段代碼的首行和末行。
代碼引用的案例截圖:\
```
### 代碼引用 ###
```
extern int main(void);
/* Add -eentry to arm-none-eabi-gcc argument */
int entry(void)
{
rt_hw_interrupt_disable();
rtthread_startup();
return 0;
}
```
### 流程圖示例 ###
```[flow]
st=>start: 開始
e=>end: 結束
op1=>operation: 我的操作
sub1=>subroutine: 函數
cond=>condition: 是或否?
io=>inputoutput: 輸出內容
st->op1->cond
cond(yes)->io->e
cond(no)->sub1(right)->op1
```
- 公式
`$ f(x) = x $`
$ f(x)=x $
```[tex]
s=\sum_1^n{n_i}
```
```[tex]
f(x) = \int_{-\infty}^\infty
\hat f(\xi)\,e^{2 \pi i \xi x} \,d\xi
```
`$ c = \pm\sqrt{a^2 + b^2} $`