Blogger Information
Blog 18
fans 0
comment 2
visits 10422
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
markdown使用方法
go0
Original
487 people have browsed it

一级标题用“# “,二级用两个“## ”,依此类推

  1. # 一级标题
  2. ## 二级标题
  3. ### 三级标题

列表用“- ”,

  1. - 笔记本电脑
  2. - 打印机
  3. - 手机
  • 笔记本电脑
  • 打印机
  • 手机

图片用“![]()”

中括号里是描述,圆括号里是图片地址,例如“![php中文网](https://www.php.cn/static/images/index_yunv.jpg)”
php中文网

代码

1. 单行的,放在“`”符号中间,那个符号是Esc下面的那个波浪线,例如`单行注释`

  1. 举例,这是一个`单行注释`

效果是:这是一个单行注释

2. 多行的,用三个波浪符号

  1. 举例
  2. ```php
  3. <?php
  4. $email = 'admin@php.cn'
  5. echo $email;
  6. ```

效果是:

  1. <?php
  2. $email = 'admin@php.cn'
  3. echo $email;

“```”后面的php标注代码用的是php语言
再看一个例子:

  1. ```javascript
  2. const o = {x:1, y:2};
  3. ```

效果是:

  1. const o = {x:1, y:2};

表格

表格是画出来的,用竖线和水平线。,水平线使用三个连续减号就可以了。例如:
| | | |
|:——————: | :——————: | :——————: |
| | | |
| | | |
填充后的效果是:

id name password
1 zhangsan 123456
2 lisi 12345

使用“:”标记表格中的内容的对齐方式,仔细看下面
表格内容左对齐
| | |
| :—————— | :—————— |
| | |
| | |
| | |
表格内容右对齐
| ——————: | ——————: |
| | |
| | |
| | |
表格内容居中
| :——————: | :——————: |
| | |
| | |

网址放在<>里

例如:<https://www.jianshu.com/p/191d1e21f7ed>
效果就是:https://www.jianshu.com/p/191d1e21f7ed
上面这个网址可以参考更加详细的markdown语法

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post