Markdown是什麼?程序員
Markdown 是一種輕量級標記語言,創始人爲約翰·格魯伯(英語:John Gruber)。它容許人們「使用易讀易寫的純文本格式編寫文檔,而後轉換成有效的XHTML(或者HTML)文檔」。這種語言吸取了不少在電子郵件中已有的純文本標記的特性。
(參考網站: https://zh.wikipedia.org/wiki/Markdown)
那麼,咱們就來介紹一下Markdown。markdown
使用方法工具
# 大標題
## 副標題
### 小標題
標準
*斜體類型*
**黑體字**
摺疊長句網站
<details><summary>Boostnote是對應markdown記法的記事本,信息排序・共享的一種工具。</summary>
- Features - <br>
· Search function to find memos in one shot
· Supports markdown notation <br>
· Support for Mac, Windows, Linux, iOS, Android <br>
· Export and import to Plain text (.txt), Markdown (.md) format <br>
· Supports PDF saving <br>
· Can be used offline <br>
· Synchronize to dropbox etc. with setting <br>
· Supports theme colors and numerous fonts <br>
</details>
* 名單1
* 名單2
* 名單3
左側寫文字,右側放入連接。this
[Boostnote](https://Boostnote)
- [x] 任務 1
- [ ] 任務 2
> 引文
> 引文引文
水平線有不少種寫法。google
* * *
***
*****
- - -
---------------------------------------
把圖片的標題寫在左側,右側寫下已保存的地方。3d
![嵌入圖像](https://boostnote.io/assets/img/logo.png)
對於程序員,能夠寫代碼。code
``` js
Render: function () {
Return (
<Div className = "commentBox">
<H1> Comments </ h1>
<CommentList data = {this.state.data} />
<CommentForm onCommentSubmit = {this.handleCommentSubmit} />
</ Div>
);
}
```
表格也易於製做。orm
複製並更改成各類各樣的東西。blog
| 水果 | 價錢 |
|:-----------|------:|
| 蘋果 | 1$ |
| 葡萄 | 4$ |
| 橙子 | 2$ |
| 檸檬 | 1$ |
| 桃子 | 3$ |
| 瓜 | 20$ |
到這裏,就是Markdown最基本的寫法。
Markdown記法不能再普通的記事本中使用。
記事本須要與Markdown兼容。
若是能夠的話,請您使用一下Boostnote。
用Boostnote的話,附加上上述的基本的markdown記法,如下的描述也能夠。
能夠寫數值公式。
$$$
\mathrm{e}^{\mathrm{i}\theta} = \cos(\theta) + \mathrm{i}\sin(\theta)
$$$
能夠畫流程圖
``` flowchart
st=>start: Start:>http://www.google.com[blank]
e=>end:>http://www.google.com
op1=>operation: My Operation
sub1=>subroutine: My Subroutine
cond=>condition: Yes or No?:>http://www.google.com
io=>inputoutput: catch something...
st->op1->cond
cond(yes)->io->e
cond(no)->sub1(right)->op1
```
也能夠寫序列。
``` sequence
Title: Here is a title
A-> B: Normal line
B -> C: Dashed line
C - >> D: Open arrow
D - >> A: Dashed open arrow
```
以上就是Markdown記法的介紹。
更多的使用它與周圍不同凡響。