玩命加载中 . . .

markdown参考案例


字符效果和横线等

删除线
斜体字 斜体字
粗体 粗体
粗斜体 粗斜体
高亮

波浪线

上标:X2
下标:O2

脚注
Content [1]

缩写(同HTML的abbr标签)

The HTML specification is maintained by the W3C.

引用 Blockquotes

引用的行内混合 Blockquotes

引用:如果想要插入空白换行即<br />标签,在插入处先键入两个以上的空格然后回车即可,普通链接

  • 苹果
  • 香蕉

普通链接

普通链接带标题

直接链接:https://github.com

锚点链接

mailto:test.test@gmail.com

GFM a-tail link @pandao 邮箱地址自动链接 test.test@gmail.com www@vip.qq.com

多语言代码高亮 Codes

行内代码 Inline code

执行命令:npm install marked

缩进风格

即缩进四个空格,也做为实现类似 <pre> 预格式化文本 ( Preformatted Text ) 的功能。

<?php
    echo "Hello world!";
?>

预格式化文本:

| First Header  | Second Header |
| ------------- | ------------- |
| Content Cell  | Content Cell  |
| Content Cell  | Content Cell  |

JS代码

function test() {
	console.log("Hello world!");
}

(function(){
    var box = function() {
        return box.fn.init();
    };

    box.prototype = box.fn = {
        init : function(){
            console.log('box.init()');

			return this;
        },

		add : function(str) {
			alert("add", str);

			return this;
		},

		remove : function(str) {
			alert("remove", str);

			return this;
		}
    };

    box.fn.init.prototype = box.fn;

    window.box =box;
})();

var testBox = box();
testBox.add("jQuery").remove("jQuery");

图片 Images

列表 Lists

无序列表(加号和嵌套)Unordered Lists (+/-/*)

  • 列表1
  • 列表2
    • 列表二-1
    • 列表二-2
    • 列表二-3
      • level 3
      • list
  • 列表3
    • 列表一
    • 列表二

有序列表 Ordered Lists (1./2.)

  1. 第一行
  2. 第二行
  3. 第三行

GFM task list

  • GFM task list 1
  • GFM task list 2
  • GFM task list 3
    • GFM task list 3-1
    • GFM task list 3-2
    • GFM task list 3-3
  • GFM task list 4
    • GFM task list 4-1
    • GFM task list 4-2

绘制表格 Tables

Left-Aligned Center Aligned Right Aligned
col 3 is some wordy text $1600
col 2 is centered $12
zebra stripes are neat $1

特殊符号 HTML Entities Codes

© & ¨ ™ ¡ £
& < > ¥ € ® ± ¶ § ¦ ¯ « ·

X² Y³ ¾ ¼ × ÷ »

18ºC " '

Emoji表情 😃

  • 😃 😂 @mentions, ⭐️ #refs, links, formatting, and tags supported 💘;
  • list syntax required (any unordered or ordered list supported) ⏰;
  • ♥️ 💛 💝 this is a complete item 👍 👎;
  • this is an incomplete item test link 💊 💉 @pandao 📜 📁 📂;
  • ⚙️ this is an incomplete item 🔍 🔒 ✉️ 📌 📎 📝 📆 📅 ;
    • ⚡️ this is an incomplete item test link 🎉 🔔 ⏳;
    • 🐰 ❓ ❗️ 🔖 📚 🔥 this is 🎶 ☀️ 🍄 an incomplete item test link;
    • 🍵 🍎 🏠 🇨🇳 ▶️ ☑️ 🔗 :fa-gear: :fa-gear: ⚡️

科学公式 TeX(KaTeX)

E=mc2E=mc^2

行内的公式E=mc2E=mc^2行内的公式,行内的E=mc2E=mc^2公式。

x>yx > y

(3x1+(1+x)2)(\sqrt{3x-1}+(1+x)^2)

sin(α)θ=i=0n(xi+cos(f))\sin(\alpha)^{\theta}=\sum_{i=0}^{n}(x^i + \cos(f))

拓展功能–自定义div

detail折叠

Python code
import os

print("hello world")

hint块

hello world

hello world

hello world

hello world

pannel块

任务列表
  • 买一双运动鞋
  • 背诵一篇作文
  • 打一会篮球
任务列表
  • 买一双运动鞋
  • 背诵一篇作文
  • 打一会篮球
任务列表
  • 买一双运动鞋
  • 背诵一篇作文
  • 打一会篮球
任务列表
  • 买一双运动鞋
  • 背诵一篇作文
  • 打一会篮球
任务列表
  • 买一双运动鞋
  • 背诵一篇作文
  • 打一会篮球

绘制流程图

Flowchart

流程图语法参考 https://github.com/adrai/flowchart.js

Markdown常用的元素有以下几种:

  • start
  • end
  • operation
  • condition
  • inputoutput
  • subroutine
st=>start: Start:>https://dxsm.github.io[blank] e=>end:>https://dxsm.github.io op1=>operation: My Operation sub1=>subroutine: My Subroutine cond=>condition: Yes or No?:>https://dxsm.github.io io=>inputoutput: catch something... para=>parallel: parallel tasks st->op1->cond cond(yes)->io->e cond(no)->para para(path1, bottom)->sub1(right)->op1 para(path2, top)->op1

状态标记
Markdown会使用不同的颜色来标记状态,状态主要有以下几种:

  • past
  • current
  • future
  • approved
  • rejected
  • invalid
start=>start: 开始|past requirementAnalysis=>operation: 需求分析|past design=>operation: 软件设计|past coding=>operation: 编码|past selfTestingPased=>condition: 自测通过?|approved debug=>operation: debug|invalid submitTestingPased=>condition: 提测通过?|rejected modifyBug=>operation: 修bug|current deploy=>operation: 部署|future end=>end: 结束|future start->requirementAnalysis->design->coding->selfTestingPased selfTestingPased(no)->debug(right)->selfTestingPased selfTestingPased(yes)->submitTestingPased submitTestingPased(yes)->deploy->end submitTestingPased(no)->modifyBug(right)->submitTestingPased

Sequence Diagram

语法参考 https://bramp.github.io/js-sequence-diagrams/

Andrew->China: Says Hello Note right of China: China thinks\nabout it China-->Andrew: How are you? Andrew->>China: I am good thanks!

mermaid

mermaid非常强大,基本能够替代上面两种流程图,语法参考 https://mermaid-js.github.io/mermaid/#/flowchart

sequence diagram

sequenceDiagram Alice ->> Bob: Hello Bob, how are you? Bob-->>John: How about you John? Bob--x Alice: I am good thanks! Bob-x John: I am good thanks! Note right of John: Bob thinks a long<br/>long time, so long<br/>that the text does<br/>not fit on a row. Bob-->Alice: Checking with John... Alice->John: Yes... John, how are you?

flowchart

graph LR A[Square Rect] -- Link text --> B((Circle)) A --> C(Round Rect) B --> D{Rhombus} C --> D

state diagram

stateDiagram [*] --> Still Still --> [*] Still --> Moving Moving --> Still Moving --> Crash Crash --> [*]

pie chart

pie title Pets adopted by volunteers "Dogs" : 386 "Cats" : 85 "Rats" : 15

gantt

gantt dateFormat YYYY-MM-DD title Adding GANTT diagram to mermaid excludes weekdays 2014-01-10 section A section Completed task :done, des1, 2014-01-06,2014-01-08 Active task :active, des2, 2014-01-09, 3d Future task : des3, after des2, 5d Future task2 : des4, after des3, 5d

电路时序图

clkdatheadbodytaildatareqack

思维导图


  1. 我是脚注 ↩︎

本文作者: 董续胜

本文链接: https://dxsm.github.io/p/markdown-ref-nc.html

版权声明: 本博客所有文章除特别声明外,均采用CC BY-NC-SA 3.0许可协议。转载请注明出处!


 评论