1. 简单¶
换行需要两个空格
emoji
:
加重链接 MkDocs
2.数学公式¶
$$
\begin{equation}
x = a_0 + \cfrac{1}{a_1
+ \cfrac{1}{a_2
+ \cfrac{1}{a_3 + \cfrac{1}{a_4} } } }
\end{equation}
$$
行内公式 x = a_0 + \cfrac{1}{a_1 + \cfrac{1}{a_2 + \cfrac{1}{a_3 + \cfrac{1}{a_4} } } } 行内公式
矩阵乘法 A_{m\times n} \times B_{n\times p} = C_{m\times p}
代码¶
bubble_sort.py
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]
- I'm a code annotation! I can contain
code
, formatted text, images, ... basically anything that can be written in Markdown.
range()
function is used to generate a sequence of numbers.
表格¶
1 | 2 | 3 |
---|---|---|
1 | 2 | 3 |
1 | 2 | 3 |
框¶
Example
This is an example of a blockquote.
Note
This is an example of a blockquote.
Warning
This is an example of a blockquote.
Danger
This is an example of a blockquote.
Bug
This is an example of a blockquote.
Quote
This is an example of a blockquote.
Success
This is an example of a blockquote.
Faq
This is an example of a blockquote.