Blogger Information
Blog 14
fans 2
comment 1
visits 7995
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
markdown的基础语法以及使用案例
梦想
Original
465 people have browsed it

1. markdown标题1-6

  1. # 一级标题
  2. ## 二级标题
  3. ### 三级标题
  4. #### 四级标题
  5. ##### 五级标题
  6. ###### 六级标题
  7. >一般情况下使用到三级标题即可

2. 列表

1.1 无序排序

  • test1
    • test2
      无序列表 -+空格+文本
      下级列表 空格+空格+ - +文本 (+ - +中间无需有空格,这里添加空格方便查看)

1.2有序排序

  1. 你好
    1.1 你好
    有序列表 1.+空格+文字
    下级有序列表 空格+1.1+文字

3. markdown段落

php中文网,永久免费的php学习平台
php中文网,永久免费的php学习平台

4. 区块/引用

markdown 区块引用方法
一个大于号+空格+引用内容

5. 链接

php中文网

[文字](url)

6. 引用图片

20期前端基础学习

![文字](url)

7. 代码引用

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=, initial-scale=1.0">
  7. <title>php中文网</title>
  8. </head>
  9. <body>
  10. <p>php中文网</p>
  11. </body>
  12. </html>

7.1. 单行代码
<?php echo "hello world";?>
7.2. 多行代码引用

  1. <?php
  2. echo 'hello world';
  3. ?>

8. 表格

姓名 年龄 性别
张三 24
李四 12
小红 22
  1. |姓名|年龄|性别
  2. |---|---|----|
  3. |张三|24|男
  4. |李四|12|男
  5. |小红|22|女
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!