Blogger Information
Blog 16
fans 0
comment 1
visits 16950
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
markdown的常用语法和实列
半生
Original
919 people have browsed it

markdown语法

  • markdown 是轻量级的标记语言,可转化为html
  • markdown 常用来编辑电子书,课件等,可导入多种格式,如pdf,epud
  • markdown 常用标签有:
序号 元素 标签
1 标题 #,##,### ……..
2 段落 行未加 2 空格,或行与行之间空一行
3 文本 *斜体*,**加粗**
4 分割条 ---(不得少于3个)
5 列表 有序:1. ...., 无序:- .... ,支持嵌套
6 引用 > ... , 可多行,形成一个区块,内部支持列等
7 代码 单行:`….`, 多行: ```html …```
8 链接 [名称](URL),或者 \<url>
9 图片 ![描述](图片 URL)
10 表格 表格是硬画出来的,实例

markdown 语法实例

一级标题

一个文档只有一个标题

二级标题

三级标题

以此类推几级标题就是几个#字符


段落
html 是超文本标记语言
marrkdown 是超轻量级语言


2.列表

有序列表

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

无序列表

  • 前端
    • html
    • css
    • javascript
  • 后端

    • php
    • java
    • python

3.引用

今天天气真好,阳光明媚微风习习
适合待出去散散步
下午可以约朋友一块打球
生活就是这样,且行且珍惜


4.代码块

单行代码
<?php include "herder.php" ?>

多行代码

  1. <!DOCTYPE html>
  2. <html>
  3. <herd></herd>
  4. <boy></boy>
  5. </html>
  1. $name = 'admin';
  1. # git初始化
  2. git init
  3. # 提交
  4. git commet -m 9:00

5.链接

只显示链接文本

php中文网

全显示

php中文网http://www.cn

只显示链接

php 中文网(http://www.php.cn )


6.图片

风景
tp6


7.表格

id 品名 单价 单位 数量 金额
1 电脑 7000 2 14000
2 手机 5000 1 5000

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


8.总结

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

Correction status:qualified

Teacher's comments:等精通js之后, 你可以考虑写一个markdown解析器,按自己的想法来处理它们
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