Markdown

Introduction

Markdown是一种标记语言,而Latex是一种排版系统

Usage

标题

1
2
3
4
5
6
# Title
## Title
### Title
#### Title
##### Title
###### Title

引用

1
2
> Learn what is to be taken seriously and laugh at the rest.
> ― Herman Hesse

Learn what is to be taken seriously and laugh at the rest.
― Herman Hesse


强调

1
2
3
4
5
6
7
8
9
10
11
12
13
*斜体*

**加粗**

***斜体加粗***

<u>下划线</u>

==高亮==

* 重点
+ 重点
- 重点

斜体

加粗

斜体加粗

下划线

高亮

  • 重点

  • 重点

  • 重点


链接

1
[mygithub](https://github.com/huaeryi)

mygithub

1
[我的github](https://github.com/huaeryi "https://github.com/huaeryi")

我的github

1
2
* mygithub[^website]
[^website]:https://github.com/huaeryi
1
![picture](/MarkdownHelp/Head.jpg =300x300)

picture

1
![ok](/First/pic.jpg "hello")

ok

1
[reference to Others](#Others)

reference to Others


代码

1
`$ echo "El Psy Kongroo"`

$ echo "El Psy Kongroo"

1
2
3
4
5
6
7
8
9
10
//忽略斜杠
//```cpp
#include <iostream>
int main()
{
using namespace std;
cout << "Hello world" << endl;
return 0;
}
//```
1
2
3
4
5
6
7
#include <iostream>
int main()
{
using namespace std;
cout << "Hello world" << endl;
return 0;
}

表情

1
2
:smile:
:laughing:

😄
😆


Latex

1
$\alpha = \delta$

$\alpha = \delta$

1
2
3
$$
\alpha = \delta
$$

$$
\alpha = \delta
$$


Others

1
* X^2^
  • X2

1
2
- [ ] home
- [x] homework
1
2
3
+++ **点击折叠**
这是被隐藏的内容
+++
 点击折叠

这是被隐藏的内容

1
2
3
|name|age|mark
|:---:|:---:|:---:|
|peter|20|80|
name age mark
peter 20 80

  1. https://github.com/huaeryi ↩︎

作者

huayi

发布于

2022-07-14

更新于

2023-11-08

许可协议