Typora (Markdown) Simple Guide

1. Code

#键盘左上角```三个撇
#```java 
#```python
#赋值
a=5


2. Title

#标题有六级目录 井号(#)+空格+内容
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题

A title

Subheadings

Three title

Four title

Five title
Six title

3. Fonts

#字体格式有三种
#粗体
**字体**

#斜体
*字体*

#删除线
~~字体~~

# Bold
font

# Italic
font

# Strikethrough
font


4. Reference

#引用也是多级
>引用
>>引用
>>>引用
>>>>引用
....

Quote

Quote

Quote

Quote


The dividing line

#分割线一
---
#分割线二
***

A dividing line


Two dividing lines


Dividing line seems to be no difference. . . . . . . .


6. Images

#图片插入
![图片名称](图片地址-可以网络链接/可以本地图片地址)
![test](https://imgconvert.csdnimg.cn/aHR0cHM6Ly9zczAuYmRzdGF0aWMuY29tLzcwY0Z2SFNoX1ExWW54R2twb1dLMUhGNmhoeS9pdC91PTQwMDgxNTA0ODUsNjYzODk0MTU1JmZtPTI2JmdwPTAuanBn?x-oss-process=image/format,png)
![test](C:\test\test.png)

test


7. Hyperlinks

##超链接
[链接名称](要跳转的网页地址)
[我的个人博客](https://www.cnblogs.com/Mr-Asher/)

My personal blog


8. List

#列表分为有序列表和无序列表

#有序 数字+点(.)+空格+内容
1. 第一
2. 第二

#无序 短横(-)+空格+内容
- 第一
- 第二

# Ordered Digital Plus point (.) + Space + content

  1. the first
  2. second

# Disordered hyphen (-) + + space SUMMARY

  • the first
  • second

9. Form

#表格(表格还有很多内容,这里简单介绍)
|    |     |     |#表格标题
|:---|---:|:----:|#表格格式,由左到右分别为左对齐,右对齐,居中
|    |    |      |#表格的内容


|标题一|标题二|标题三|#表格标题
|:---|---:|:----:|#表格格式,由左到右分别为左对齐,右对齐,居中
| 100| 150 |  250|#表格的内容
Left Align Right Center
100 150 250


Typora official website

https://www.typora.io/
official website link

Released two original articles · won praise 1 · views 32

Guess you like

Origin blog.csdn.net/qq_43577047/article/details/105185629