Blogger Information
Blog 2
fans 0
comment 1
visits 890
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
markdown语法学习什么时候开始都不晚!
skyliu
Original
421 people have browsed it

markdown语法学习什么时候开始都不晚!

标题

语法:#:一级标题
语法:##:二级标题

段落

文本+两个空格或一个空行

列表

无序列表:- 或者 + 或 * 后添加一个空格再写内容

eg:

  • 无序列表1
  • 无序列表2
  • 无序列表3
  • 无序列表1
  • 无序列表2
  • 无序列表3
  • 无序列表1
  • 无序列表2
  • 无序列表3

有序列表:整数序号+空格,再添加内容

1 有序列表1
2 有序列表2
3 有序列表3

备注:不同或相同类型列表质检可以互相嵌套

区块/引用

语法: >+空格+引用内容

eg:

来自本教程来自开发哥的分享 kaifage.cn

可以嵌套,构成层级关系
来自开发哥的分享 kaifage.cn

链接

只显示链接文本

eg:

开发哥

只显示链接URL

eg:
https://www.kaifage.cn

图片

VScode插件安装列表

代码

单行代码:将代码写到一对”反引号”中(Esc下面的按键)

eg:

<?php echo "Hello Wrold!" ?>

多行代码:将代码写到一对由三个反引号组成的代码块中,起始反引号后可以标注语言名称,已获取语法高亮提示。

eg:

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

表格

markdown中的表格是硬画出来的
|:竖线分隔单元格
-:横线分隔表头与表体
:- 设置内容和标题栏居左对齐。
-: 设置内容和标题栏居右对齐。
:-:设置内容和标题栏居中对齐。

eg:

左对齐 居中对齐 右对齐
单元格 单元格 单元格
单元格 单元格 单元格
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