这个页面仅用于测试语法
code_fence
print("Hello, world!")
code_colon
def fibonacci(n):
a, b = 0, 1
for _ in range(n):
yield a
a, b = b, a + b
for num in fibonacci(10):
print(num)
exec_code
def fibonacci(n):
a, b = 0, 1
for _ in range(n):
yield a
a, b = b, a + b
for num in fibonacci(10):
print(num)
hover_card
You can hover it at the bottom (default), or at the top, or at the right, or at the left.
I am at the bottom.
I am the top.
I am at the right.
I am at the left.
tab
pip install mkdocs-shadcn
uv add mkdocs-shadcn
poetry add mkdocs-shadcn