Markdown grammar learning and retention

markdown learning

1. Code block:

1.java

 // 代码块
​```java 
​```shell

2.shell

 //linux 下springboot命令启动

2. Title:

// 标题语法
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题

[External link image transfer failed. The source site may have an anti-hotlinking mechanism. It is recommended to save the image and upload it directly (img-5guffBJq-1610703138793)(C:\Users\ys129\AppData\Roaming\Typora\typora-user-images\ image-20210115171125136.png)]

CTRL+SHIFT+1: wake up the outline

3. Font

// 加粗
**要写的语言**
//代码高亮显示
==要高亮的内容==
//删除线
~~要删除的内容~~
//斜体
*要斜体的内容*

// Bold
the language to be written
//The code is highlighted

gaoliang

// Strike out the content
to be deleted
//Italic
to italicize the content

4. Quote:

// 引用语法
> 作者:---
>> 作者:---
>>> 作者:---

Author: -

Author: -

Author: -

5. Dividing line:

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

6. Picture insertion:

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

[External link image transfer failed. The source site may have an anti-leech link mechanism. It is recommended to save the image and upload it directly (img-NksL9reH-1610703138795)(C:\Users\ys129\Pictures\Saved Pictures\wallhaven-0j512p.jpg)]

Online pictures

7. Hyperlink:

//超链接语法
[名称](超链接地址)
[B站](https://www.bilibili.com/)

Station B

8. List:

//无序列表
	- 目录一
	- 目录二
	- 目录三
//有序列表
    1+.+空格+名称
//多级有序列表:- 前加个tab,序号自己写。缩进用CTRL+【  或 】 (英文的中括号,该死的提交自动变成中文了) 来进行增减。
  • Catalog One
  • Catalog Two
  • Catalog Three

  1. Home page
  2. classification
  3. label

9. Form:

Right-click the table to insert rows and columns

Guess you like

Origin blog.csdn.net/qq_43218276/article/details/112680543