MarkDown Quick Start (typora)

MarkDown Quick Start (typora)

1. The code block:

//代码块语法:
​```java
    
    
​```shell

1.java Code

package com.yjx.jdbc
    
import java.sql.*;
public class JDBCUtil()

2.shell script

//linux下spring项目的启动命令
# java -jar blog start

2. Title

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

This is a title

This is the second title

This three-stage title

This is a four title

This is a five title
This is the six Title

3. Fonts

//加粗
**加粗**
//代码高亮显示
==代码高亮==
//删除线
~~删除线~~
//斜体
*斜体*

Bold
== == code highlighting
Strikethrough
Italic

4. Reference:

//引用语法
>作者:应建鑫
>>作者:应建鑫
>>>作者:应建鑫

Author: Xin should be built

Author: Xin should be built

Author: Xin should be built

The dividing line

//分割线
---
//分割线2
***

//split line


6. insert pictures

//在线图片/本地图片
![我的照片](/image/me.png) --图片路径

My Photos

7. Hyperlinks

//超链接
[我的GitHub](路径)

My GitHub

8. List

//无序列表
- 目录1
- 目录2
- 目录3

//有序列表
1+. + 名称
  • Contents 1
  • Contents 2
  • Contents 3
  1. Home
  2. classification
  3. label

9. Form

Achievement Chinese digital
78 88

Guess you like

Origin www.cnblogs.com/x-i-n/p/12063546.html