Blogger Information
Blog 10
fans 0
comment 0
visits 5482
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Visual Studio Code 插件安装与markdown语法使用
土老帽
Original
734 people have browsed it

1. 安装Visual Studio Code 插件

序号 插件名称 描述
1 chinese(Simplified) 简体中文语言包
2 live Server html实时预览
3 prettier-code formatter 代码格式化插件
4 dracula official 吸血鬼主题
5 Markdown Preview Enhanced Markdown 实时预览
6 Markdownlint markdown 语法检查器

2.Markdown 语法

1.标题

  1. # 1个#号代表1级标题 ->代表 <h1>
  2. ## 2个#号代表2级标题 ->代表 <h2>
  3. ### 3个#号代表3级标题 ->代表 <h3>
  4. #### 4个#号代表4级标题 ->代表 <h4>
  5. ##### 5个#号代表5级标题 ->代表 <h5>
  6. ###### 6个#号代表6级标题 ->代表 <h6>
  7. 建议使用到3级标题

2.列表

2.1无序列表

  • item1
  • item2
  • item3
    • subltem3-1
    • subltem3-2
    • subltem3-3

2.2有序列表

  1. 1.item1
  2. 2.item2
  3. 3.item3
  4. 1.subltem3-1
  5. 2.subltem3-2
  6. 3.subltem3-3

3.代码

1.单行:const box = document.querySelector('#box")
2.多行

  1. namespace core;
  2. class Demo
  3. {
  4. // ...
  5. }

4.表格

id 姓名 职位 工资
1 张三 总经理 8000
2 李四 经理 5000
3 王麻子 前台 3000

5.图片

  1. 语法:![描述信息](图片URL地址)

6.链接

博客:https://www.php.cn/blog/ksycdn.html

html文档标签

  1. <!-- !文档类型 -->
  2. <!DOCTYPE html>
  3. <!-- ?根元素: lang 页面语言 -->
  4. <html lang="zh-CN">
  5. <!-- 头元素: 页面描述,供浏览器或搜索引擎解析时参考 -->
  6. <head>
  7. <!-- //元标签meta: charset 默认字符集,utf8可表示世界上几乎所有已知语言字符 -->
  8. <meta charset="UTF-8" />
  9. <!-- 浏览器兼容,原用于IE8适配,可确保按IE最高版本来解析页面,可有可无,现在微软也采用了Chrome内核啦 -->
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  11. <!-- *视口适配控制: 极其重要,这涉及到三个"视口"类型之间的转换与适配,后面讲到移动端布局更细说 -->
  12. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  13. <!-- 页面标题: 显示在浏览器标签页,用于描述页面信息 -->
  14. <title>Document</title>
  15. <!-- 引入外部样式表 -->
  16. <link rel="stylesheet" href="style.css" />
  17. <!-- 引入外部脚本 -->
  18. <script src="outer.js"></script>
  19. </head>
  20. <!-- 主体元素: 页面实际显示的内容,也是开发重点和用户真正关注的部分 -->
  21. <body>
  22. <h1 style="color: red">hello world</h1>
  23. <h1>今晚大家很认真</h1>
  24. <img src="xxx.jpg" alt="" />
  25. <!-- 单标签: 通常用于引用外部资源
  26. 双标签: 内容来自开发者提供 -->
  27. </body>
  28. </html>
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