Markdown的基本语法

时间:2022-12-31 13:55:16

Markdown的基本语法

一、简介

Markdown的语法简洁明了、学习容易,而且功能比纯文本更强,因此有很多人用它写博客。世界上最流行的博客平台WordPress和大型CMS如JoomlaDrupal都能很好的支持Markdown。完全采用Markdown编辑器的博客平台有GhostTypecho

二、语法

2.1 目录

[TOC]

2.2 标题

# 一级标题

## 二级标题

### 三级标题

#### 四级标题

#### 五级标题

2.3 引用

> #引用
>
> > #嵌套引用

这是一个引用

这真的就是一个引用

这是一个嵌套引用

2.4 无序列表

* Item1
* Item2
* Item3
  • Item1
  • Item2
  • Item3

2.5 有序列表

1. Item1
2. Item2
3. Item3
  1. Item1
  2. Item2
  3. Item3

2.6 插入链接

[百度](https://www.baidu.com)

百度

2.7 插入图片

![图片](./path/to/example.png)

Markdown的基本语法

2.8 粗体和斜体

**这是粗体**

*这是斜体*

这是粗体

这是斜体

2.9 表格

| Tables        | Are           | Cool  |
| ------------- | ------------- | ----- |
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

2.10 代码框

```或者`

int main(int argc, char **argv)
{

return 0;
}

printf

2.11 分割线

***

2.12 下划线

<u>666</u>

666

2.13 数学公式

$match$

match

2.14 破坏线(名字自取)

~~啦啦啦~~

啦啦啦

2.15 数学公式块

$$
sec
$$

sec

2.16 复选框

- [ ] 方式及福利
- [ ] slfjlsd
- [ ] 收款方hi
  • [ ] 方式及福利
  • [ ] slfjlsd
  • [ ] 收款方hi

2.17 链接注释

[google]: https://www.google.com "这是谷歌"

2.18 脚注

[^这是嘛呀]: 这是脚注