MarkDown学习笔记
参考官方的示例
二级标题
三级标题
四级标题
五级标题
六级标题
asdasdasdasdassdasdas
这是一段引用
这是一段引用
无序列表
1 |
|
- 阿斯大声
- 阿斯大声打
- 阿斯大声问请问恶
1 |
|
- 阿斯大声
- 阿斯大声打
- 阿斯大声问请问恶
1 |
|
有序列表
阿斯大声打
阿斯大声阿斯大声
dasd阿斯dasdaaa
斜体 加粗 (强调)
这是斜体 这是加粗 这是_什么呢_ 好像也__是一样的__
这段是横线
超链接
This is an example reference-style link.
文章内的超链接
Ctrl+左键
Email 链接
作者的 Emal xx@xx.com 链接
插入图片
- 内联风格
- 引用风格
一直没弄出来
xxx
代码块 与 代码行
delay_init(); //延时函数初始化
1 |
|
表格
name | age | sex |
---|---|---|
Done | 20 | 0 |
Jack | 21 | 0 |
Done 这里换行了 | ||
删除线
这是一条删除 线线线线线线线线线线线线线线线
下划线
xiahuaxian
1 |
|
这是一个注释
[注释] ^注释:Somebody that I used to know.
数学表达式
$ (h/2)(a+9)/(b9))*L $
$lim_{x \to \infty} \ exp(-x)=0$
修改文字颜色 HTLML
You can use HTML to style content what pure Markdown does not support.
TEXT Style
TEXT Style
TEXT Style
TEXT Style
TEXT Style
TEXT Style
TEXT Style
1 |
|
For example, use <span style="color:red">this text is red</span>
to add text with red color.
表情 Emoji :smile:
Input emoji with syntax :smile:
.
User can trigger auto-complete suggestions for emoji by pressing ESC
key, or trigger it automatically after enabling it on preference panel. Also, inputting UTF-8 emoji characters directly is also supported by going to Edit
-> Emoji & Symbols
in the menu bar (macOS).
Task List 带勾的计划任务 勾选框
- a task list item
- list syntax required
- completed
注意 [内有一个空格]
Video
You can use the <video>
HTML tag to embed videos. For example:
1 |
|
脚注
1 |
|
文字^脚注1文字.
上下标
1.实现下标与上标的三种方法:
方法1(符号):(这是Markdown的拓展语法)
1
2
3下标 :θ~1~
上标 :θ^2^
12结果如下:
下标 :θ1
上标 :θ^2^方法2(HTML标签):
1
2
3下标 :θ<sub>1</sub>
上标 :θ<sup>2</sup>
12结果如下:
下标 :θ1
上标 :θ2方法3(公式块):
1
2
3$$
下标 :θ_1 ,上标 :θ^2
$$结果如下:
$$
下标 :θ_1 ,上标 :θ^2
$$
Note
HTML 跳转
1 |
|