Markdown 语法
Markdown 是一种轻量级标记语言,排版语法简洁,让人们更多地关注内容本身而非排版。它使用易读易写的纯文本格式编写文档,可与 HTML 混编,可导出 HTML、PDF 以及本身的 .md 格式的文件。
[TOC]
Markdown 语法
h1-h6 标题
语法:
# h1 Heading
## h2 Heading
### h3 Heading
#### h4 Heading
##### h5 Heading
###### h6 Heading显示:
h1 Heading
h2 Heading
h3 Heading
h4 Heading
h5 Heading
h6 Heading
粗体/斜体/删除线
语法:
**粗体**
**粗体**
_斜体_
_斜体_
~~删除线~~显示:
粗体粗体
斜体斜体
删除线
列表
语法:
无序列表:
- 通过以 + 、 - 或 * 开头的行来创建列表
- 子列表是通过缩进 2 个空格来制作的
有序列表:
1. 使用序列号开始编号
55. 使用偏移量开始编号
任务列表
- [ ] 未完成任务一
- [x] 已完成任务二
- [ ] 未完成任务三显示:
无序列表:
- 通过以 + 、 - 或 * 开头的行来创建列表
- 子列表是通过缩进 2 个空格来制作的
有序列表:
- 使用序列号开始编号
- 使用偏移量开始编号
任务列表
- 未完成任务一
- 已完成任务二
- 未完成任务三
表格
| Tables | Are | Cool |
| ------------- | :-----------: | ----: |
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |代码
语法:
- 行内代码:`code`
- 块级代码:```代码内容```显示:
- 行内代码:
code - 块级代码:
代码内容
超链接
- 超链接:[文字](https://github.com/nodeca/pica)
- 超链接带文字:[文字](https://github.com/nodeca/pica "超链接hover文字")
- 网址直接转换显示:https://github.com/nodeca/pica图像
- 图像语法:
- 图像带文字:
- 图像带锚点:水平线
分割线:---
星号:***
下划线:___引用
> 引用内容
>> 引用嵌套
>>> 多层嵌套kbd
- html语法:<kbd>Ctrl</kbd>
- 插件语法:[[Ctrl]]排版
输入:(c) (C) (r) (R) (tm) (TM) (p) (P) +-
输出:© © ® ® ™ ™ (p) (P) ±
输入:!!!!!! ???? ,, -- ---
输出:!!! ??? , – —
输入:test.. test... test..... test?..... test!....
输出:test… test… test… test?.. test!..目录表
[[toc]]自定义容器
::: info 灰色
:::
::: tip 紫色
:::
::: warning 黄色
:::
::: danger 红色
:::
::: details 灰色
:::GitHub 警报
Typora 同样支持渲染。
> [!NOTE]
> 灰色:强调用户在快速浏览文档时也不应忽略的重要信息。
> [!note]
> 灰色:强调用户在快速浏览文档时也不应忽略的重要信息。
> [!TIP]
> 紫色:有助于用户更顺利达成目标的建议性信息。
> [!IMPORTANT]
> 粉色:对用户达成目标至关重要的信息。
> [!WARNING]
> 黄色:因为可能存在风险,所以需要用户立即关注的关键内容。
> [!CAUTION]
> 红色:行为可能带来的负面影响。NOTE
灰色:强调用户在快速浏览文档时也不应忽略的重要信息。
NOTE
灰色:强调用户在快速浏览文档时也不应忽略的重要信息。
TIP
紫色:有助于用户更顺利达成目标的建议性信息。
IMPORTANT
粉色:对用户达成目标至关重要的信息。
WARNING
黄色:因为可能存在风险,所以需要用户立即关注的关键内容。
CAUTION
红色:行为可能带来的负面影响。
上标下标
- 上标sup:19^th^
- 下标sub:H~2~Oins/mark
- 插入文本 `<ins>`:++插入的文本++
- 标记本文 `<mark>`:==Marked text==脚注
Here is a statement requiring a footnote.[^1] Here is a statement requiring a second footnote.[^2] Another point to note.[^longnote]
[^1]: This is the content of the first footnote.
[^2]: This is the content of the second footnote.
[^longnote]: This footnote might be longer and span multiple paragraphs. Indent subsequent paragraphs (usually by four spaces or one tab) to include them within the same footnote.
Here is a statement requiring a footnote.[^1]
Here is a statement requiring a second footnote.[^2]
Another point to note.[^longnote]
[^1]: This is the content of the first footnote.
[^2]: This is the content of the second footnote.
[^longnote]: This footnote might be longer and span multiple paragraphs. Indent subsequent paragraphs (usually by four spaces or one tab) to include them within the same footnote.Task List Inside Neovim (by render-markdown plugin)
- [ ] Marriott?
- [x] Hilton?
- [?] IHG?
- [>] Hyatt?
- [-] Jin Jiang?
- [!] Huazhu
- [~] AccorTask List Inside Neovim (by render-markdown plugin)
- Marriott?
- Hilton?
- [?] IHG?
- [>] Hyatt?
- [-] Jin Jiang?
- [!] Huazhu
- [~] Accor
[!ABSTRACT] This is test.