Blogger Information
Blog 4
fans 0
comment 0
visits 3213
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
markdown语法使用
Keroro丶前行
Original
591 people have browsed it

一级标题开头以#加空

一级标题

一个文档应该只有一个大标题#

二级标题开头以两个#加空

二级标题

三级标题开头以三个#加空

三级标题


段落
html 是超文本标记语音
markdown 是超轻量级的标记语言


2. 列表

有序列表

开头用数字加英文句号加空格开头

  1. 上午 11 点开会
  2. 中午 12:00 午休
  3. 下午 16:00 下班

无序列表

横杠加空格开头

  • 前端
    • html
    • css
    • javascript
  • 后端
    • php
    • java
    • python

3. 引用

用大于号加空格开头

好好学,早日出师


4. 代码块

单行代码两个反引号括起来

<?php include "header.php" ?>

多行代码六个反引号括起来

三个反引号加语言名称开头

  1. <!DOCTYPE html>
  2. <html>
  3. <head></head>
  4. <body></body>
  5. </html>
  1. $name = 'admin';
  1. # git初始化
  2. git init
  3. # 提交
  4. git commit -m 20:46

5.链接

只显示链接文本 [php 中文网](https://www.php.cn)

php 中文网

全显示 [php 中文网](https://www.php.cn)<https://www.php.cn>

php 中文网https://www.php.cn

只显示链接 php 中文网<https://www.php.cn>

php 中文网https://www.php.cn


6. 图片

  1. ![tp6](https://img.php.cn/upload/course/000/000/015/5e0d82773b4fe808.png)

tp6

  1. ![tp6](https://img.php.cn/upload/course/000/000/015/5e0d82773b4fe808.png "thinkphp6.0")

tp6


7. 表格

id 品名 价格 数量 备注
0 拖鞋 20 1 2021
1 棉拖 38 1 2021
  1. |id|品名|价格|数量|备注|
  2. |:---:|:----:|:----|----:|:----:|
  3. |0|拖鞋|20|1|2021|
  4. |1|棉拖|38|1|2021|
  • :---左对齐

  • :---:居中

  • ---:居右


8.总结

  • markdown 语法规范并不统一,不同的攻击预览效果并不一致
  • markdown 允许功能扩展,例如分式,流程图等
  • markdown 是程序员写技术文档的必备工具,必须熟练掌握它
Correcting teacher:天蓬老师天蓬老师

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