1->水平線
注意,使用時發現,水平線的語句上一行必須爲空行,否則水平線不生效ios
*** 或者 ---字體
------->效果:spa
2->標題3d
# 大
## 大
### 大
#### 大
##### 大
###### 大code
------->效果:blog
3->字體圖片
*斜體*
**黑體**get
------->效果:博客
斜體
黑體io
4->摺疊
<details><summary>我是誰?</summary>
你爸爸!
</details>
------->效果:
5->列表
* 第一
* 第二
* 第三
------->效果:
6->連接
[I am your father](這裏寫連接的地址)
------->效果:
博客園
7->引文
>引文
>這是
>這裏一直
>一直一直都是引文
------->效果:
引文
這是
這裏一直
一直一直都是引文
8->插入圖片
![圖片](https://boostnote.io/assets/img/logo.png)
------->效果:
9->源代碼
```
#include <iostream>
using namespace std;
int main(void){
cout<<"C++ is the best language!"<<endl;
return 0;
}
```
------->效果:
#include <iostream> using namespace std; int main(void){ cout<<"C++ is the best language!"<<endl; return 0; }
10->表格符號
注意,使用時發現,表格的語句上一行必須爲空行,否則表格不生效
| 左對齊 | 中對齊 | 右對齊 |
| ------ |:------:| ------:|
| hello | hello | hello |
------->效果:
左對齊 | 中對齊 | 右對齊 |
---|---|---|
hello | hello | hello |
11->公式 :支持LaTex
$
f(t)=t^2
$
$$
f(t)=t^2
$$
------->效果:
\(f(t)=t^2\)
\[ f(t)=t^2 \]