博客使用Markdown,记录一下基本语法的使用。
APPEARANCE
HEADING
HEADING
HEADING
HEADING
DELETED
DELETED
1 2 3
| <s>DELETED</s>
~~DELETED~~
|
ITALIC
ITALIC
BOLD
BOLD
BOLD ITALIC
BOLD ITALIC
1 2 3
| ***BOLD ITALIC***
___BOLD ITALIC___
|
2H2 + 02 -> 2H20
1
| 2H<sub>2</sub> + 0<sub>2</sub> -> 2H<sub>2</sub>0
|
A2 + B2 = C2
1
| A<sup>2</sup> + B<sup>2</sup> = C<sup>2</sup>
|
PRC
1
| <abbr title="People's Republic of China">PRC</abbr>
|
早
– 鲁迅
1 2 3
| > 早 > > -- <cite>鲁迅</cite>
|
POINT ONE
POINT TWO
POINT …
1 2 3 4 5
| - POINT ONE
- POINT TWO
- POINT ...
|
POINT ONE
POINT TWO
POINT …
1 2 3 4 5
| * POINT ONE
* POINT TWO
* POINT ...
|
1 2 3 4 5
| + POINT + POINT + POINT + POINT + POINT
|
- POINT ONE
- POINT TWO
- POINT …
1 2 3
| 1. POINT ONE 2. POINT TWO 3. POINT ...
|
1 2 3 4
| - [x] TASK 1 - [ ] TASK 2 - [x] TASK 2.1 - [ ] TASK 2.2
|
git status
https://github.com/wadeee/
1
| <https://github.com/wadeee/>
|
GITHUB
1
| [GITHUB](https://github.com/wadeee/)
|
GITHUB
1 2 3
| [GITHUB][TARGET]
[TARGET]: https://github.com/wadeee/ "wade's github"
|
1
| ![](/images/posts/learn-markdown/pic.jpg "pic")
|
1 2 3 4 5
| [![pic]][pic link]
[pic]: /images/posts/learn-markdown/pic.jpg "pic"
[pic link]: https://github.com/wadeee/
|
TEXT LIKE `<pre>`
1 2 3 4 5 6 7 8 9 10
| <!DOCTYPE html> <html> <head> <mate charest="utf-8" /> <title>Hello world!</title> </head> <body> <h1>Hello world!</h1> </body> </html>
|
1 2 3 4 5 6 7 8 9 10 11 12
| ```html <!DOCTYPE html> <html> <head> <mate charest="utf-8" /> <title>Hello world!</title> </head> <body> <h1>Hello world!</h1> </body> </html> ```
|
Function name |
Description |
help() |
Display the help window. |
destroy() |
Destroy your computer! |
1 2 3 4
| | Function name | Description | | ------------- | ------------------------------ | | `help()` | Display the help window. | | `destroy()` | **Destroy your computer!** |
|