Markdown 增强功能
Markdown 示例。
Admonitions 告示¶
也叫: call-outs
参考:
- Material for MkDocs, Admotions
- PyMdown Extensions, Admonition
- Docusaurus, Admonitions
- Obsidian, Callouts
例子:
标题
告示内容,需要开启Admonition
。
基本语法:
{!!!|???} {note,abstract,info,tip,success,question,warning,failure,danger,bug,example,quote} "标题"
Note
这是一个关闭的告示,需要开启Details
。
Code blocks 代码块¶
- 代码块:设置标题、行号、高亮行
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):
if items[j] > items[j + 1]:
items[j], items[j + 1] = items[j + 1], items[j]
# theme:
# features:
# - content.code.annotate
# markdown_extensions:
# - pymdownx.snippets
Tabs 标签页¶
- 标签页
- Sed sagittis eleifend rutrum
- Donec vitae suscipit est
-
Nulla tempor lobortis orci
- Sed sagittis eleifend rutrum
- Donec vitae suscipit est
Example
This is en example!
Tables 表格¶
- 启用可排序表格
Method | Description |
---|---|
GET | Fetch resource |
PUT | Update resource |
DELETE | Delete resource |
- 从文件导入
Title 电影 | Director 导演 | Score 打分 | Year 年份 | Region 地区 | Genre 类型 |
---|---|---|---|---|---|
一一 | 杨德昌 | 🌟9.1 | 2000 | 中国台湾/日本 | 剧情/爱情/家庭 |
牯岭街少年杀人事件 牯嶺街少年殺人事件 | 杨德昌 | 🌟8.9 | 1991 | 中国台湾 | 剧情/犯罪 |
麻将 麻將 | 杨德昌 | 🌟8.7 | 1996 | 中国台湾 | 剧情/喜剧 |
悲情城市 | 侯孝贤 | 🌟9.0 | 1989 | 中国台湾 | 剧情/历史 |
春光乍泄 春光乍洩 | 王家卫 | 🌟9.0 | 1997 | 中国香港/日本/韩国 | 剧情/爱情/同性 |
重庆森林 重慶森林 | 王家卫 | 🌟8.8 | 1994 | 中国香港 | 剧情/爱情 |
花样年华 花樣年華 | 王家卫 | 🌟8.7 | 2000 | 中国香港 | 剧情/爱情 |
东邪西毒 東邪西毒 | 王家卫 | 🌟8.6 | 1994 | 中国香港/中国台湾 | 剧情/动作/爱情/武侠/古装 |
阿飞正传 阿飛正傳 | 王家卫 | 🌟8.5 | 1990 | 中国香港 | 剧情/爱情/犯罪 |
Diagrams 图表¶
- 流程图:
flowchart LR
Start --> Stop
B{Error?} ---> |Yes| C[Hmm...];
B ---> |No| E[Yay!];
More 其他¶
- 文本标记:
- Addition
- Deletion
: textdeleted,This was deleted - Substitution
: textonea single - Comment
- Highlight
``
: This was marked, Highlighting - This was inserted
- H2O
- ATA
- Addition
- Annotaions
- Buttons
- Grids:
<div class="grid cards" markdown> ... </div>
- Tooltips:
content.tooltips