基本的Markdown语法知识与应用
标题
h1 标题
h2 标题
h3 标题
h4 标题
h5 标题
h6 标题
列表
无序列表
- 1
- 2
- 3
有序列表
- 1
- 2
- 3
引用
这里是引用
图片与链接
图片为:![]()
- 示范

链接为:[]()
- 示范 bing
文本样式
-
这是粗体文字
-
这是粗体文字
-
这是斜体文字
-
这是斜体文字
-
删除线
水平线
代码
Inline code
Indented code
// Some comments
line 1 of code
line 2 of code
line 3 of code
Block code “fences”
Sample text here...
Syntax highlighting
var foo = function (bar) {
return bar++;
};
console.log(foo(5));
部分参考自 简书 Markdown——入门指南