字符效果和横线等
删除线
斜体字 斜体字
粗体 粗体
粗斜体 粗斜体
高亮
上标:X2
下标:O2
脚注
Content [1]
缩写(同HTML的abbr标签)
The HTML specification is maintained by the W3C.
引用 Blockquotes
引用的行内混合 Blockquotes
引用:如果想要插入空白换行
即<br />标签
,在插入处先键入两个以上的空格然后回车即可,普通链接。
- 苹果
- 香蕉
锚点与链接 Links
直接链接:https://github.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.)
- 第一行
- 第二行
- 第三行
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
tagssupported 💘; - 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 🔍 🔒 ✉️ 📌 📎 📝 📆 📅 ;
科学公式 TeX(KaTeX)
行内的公式行内的公式,行内的公式。
拓展功能–自定义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
状态标记
Markdown会使用不同的颜色来标记状态,状态主要有以下几种:
- past
- current
- future
- approved
- rejected
- invalid
Sequence Diagram
语法参考 https://bramp.github.io/js-sequence-diagrams/
mermaid
mermaid非常强大,基本能够替代上面两种流程图,语法参考 https://mermaid-js.github.io/mermaid/#/flowchart
sequence diagram
flowchart
state diagram
pie chart
gantt
电路时序图
思维导图
我是脚注 ↩︎
本文链接: https://dxsm.github.io/p/markdown-ref-nc.html
版权声明: 本博客所有文章除特别声明外,均采用CC BY-NC-SA 3.0许可协议。转载请注明出处!