Markdown语法

▼魔方 西西 提交于 2020-12-24 08:28:12

1. 分级标题,任务列表

1.1 分级标题

# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题

1.2 任务列表

  • [ ] 未完成任务
  • [x] 已完成任务
- [ ] 未完成任务列表
- [x] 已完成任务列表

1.3 无序列表

  • list with *
  • list with +
  • list with -
* list with *
+ list with +
- list with -

1.4 有序列表

  1. list 1
  2. list 2
1. list 1
2. list 2

2. 缩进、换行、段落、引用、空行、对齐方式

2.1 首行缩进

 首行缩进

 首行缩进

2.2 换行

Press Shift + Return to create a single line break. Most other markdown parsers will ignore single line breaks, so in order to make other markdown parsers recognize your line break, you can leave two spaces at the end of the line, or insert <br/>.

2.3 段落

A paragraph is simply one or more consecutive lines of text. In markdown source code, paragraphs are separated by two or more blank lines. In Typora, you only need one blank line (press Return once) to create a new paragraph.

2.4 引用

通过">"来表示一个引用

在引用中通过">"可以表示分级引用

> 通过">"来表示一个引用
>> 在引用中通过">"可以表示多级引用

2.5 空行

在编辑的时候有多少个空行(只要这一行只有回车或者space没有其他的字符就算空行),在渲染之后,只隔着一行。

2.6 对齐方式

<center>行中心对齐</center>

<p align="left">行左对齐</p>

<p align="right">行右对齐</p>

<center>行中心对齐</center>

<p align="left">行左对齐<p>

<p align="right">行右对齐<p>

3. 斜体、粗体、删除线、下划线、背景高亮

3.1 斜体

斜体 斜体

*斜体*
_斜体_

3.2 粗体

粗体 加粗斜体

**粗体**
***加粗斜体***

3.3 删除线

删除线

~~删除线~~

3.4 下划线

<u>下划线</u>

<u>下划线</u>

3.5 高亮

==高亮==

==高亮== 需要开启扩展语法

4. 代码块、公式块、表格

4.1 代码块

​```
这是代码块
​```
public static void main(String[] args) {
    System.out.println("this is java code block.");
}

4.2 公式块

$$
这是公式块
$$

4.3 表格

| First Header | Second Header |
|-|-|
|LZ|NJ|
First Header Second Header
LZ NJ
| Left-Aligned  | Center Aligned  | Right Aligned |
| :------------ |:---------------:| -----:|
| col 3 is      | some wordy text | $1600 |
| col 2 is      | centered        |   $12 |
| zebra stripes | are neat        |    $1 |
Left-Aligned Center Aligned Right Aligned
col 3 is some wordy text $1600
col 2 is centered $12
zebra stripes are neat $1

5. 图片、超链接

5.1 图片

![区块链](https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=702257389,1274025419&fm=27&gp=0.jpg "区块链啊")

区块链

5.2 超链接

[简书](https://www.jianshu.com/ "简书网站")

简书

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!