0%

Markdown语法笔记

博客使用Markdown,记录一下基本语法的使用。

APPEARANCE

1
# CODE

HEADING

1
# HEADING
HEADING
1
###### HEADING

HEADING

1
2
HEADING
=======

HEADING

1
2
HEADING
-------

DELETED

DELETED

1
2
3
<s>DELETED</s>

~~DELETED~~

ITALIC

ITALIC

1
2
3
*ITALIC*

_ITALIC_

BOLD

BOLD

1
2
3
**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 ...
  • POINT
    • POINT
    • POINT
  • POINT
    • POINT
1
2
3
4
5
+ POINT
+ POINT
+ POINT
+ POINT
+ POINT
  1. POINT ONE
  2. POINT TWO
  3. POINT …
1
2
3
1. POINT ONE
2. POINT TWO
3. POINT ...
  • TASK 1
  • TASK 2
    • TASK 2.1
    • TASK 2.2
1
2
3
4
- [x] TASK 1
- [ ] TASK 2
- [x] TASK 2.1
- [ ] TASK 2.2

git status

1
`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")

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
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!** |




1
2
3
4
---
----
***
*****