Blogger Information
Blog 9
fans 0
comment 5
visits 10242
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Markdown学习笔记
酒淋后
Original
679 people have browsed it

一、标题

一个文档应该只有一个大标题
markdown关于标题的语法举例:

#一级标题
##二级标题
###三级标题
####四级标题
#####五级标题
######六级标题

markdown关于标题的语法举例实际显示效果:

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

二、段落

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


三、列表

有序列表
1.上午11点开会
2.中午12点午休
3.下午16点下班

无序列表

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

四、引用

其实我是一个不爱说话的人
我直播讲课都是被逼的
不逼自己一下根本不知道自己有优秀


五、代码块

单行代码:

<?php include "header.php"?>

多行代码:

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <body>
  5. </body>
  6. </head>
  7. </html>
  8. </!doctype>
  1. $name='admin';
  1. #git初始化
  2. git init
  3. #提交
  4. git commit -m20:46

六、链接

只显示链接文本

【PHP 中文网】(https://www.php.cn)

全显示

【PHP 中文网】(https://www.php.cn)https://www.php.cn

只显示链接

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


七、图片

tp6


八、表格

id 品名 单价 单位 数量 金额
1 电脑 242 1 242.00
2 手机 242 1 242.00

表格无法设置大小,列宽 以及行与列的合并
如果有个性化需求,可直接使用<table>标签


九、总结

  • markdown 语法规范并不统一,不同的工具预览的效果并不一致;
  • 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
1 comments
酒淋后 2020-09-30 12:01:12
请老师对我要求苛刻一点,指出不足之处
1 floor
Author's latest blog post