卡片标题 1
这里是卡片内容。
::: flex around center
| 列 1 | 列 2 | 列 3 |
| ---- | ---- | ---- |
| 1 | 2 | 3 |
| 4 | 5 | 6 |
| 列 1 | 列 2 | 列 3 |
| ---- | ---- | ---- |
| 1 | 2 | 3 |
| 4 | 5 | 6 |
:::| 列 1 | 列 2 | 列 3 |
|---|---|---|
| 1 | 2 | 3 |
| 4 | 5 | 6 |
| 列 1 | 列 2 | 列 3 |
|---|---|---|
| 1 | 2 | 3 |
| 4 | 5 | 6 |
:::: card-grid
::: card title="卡片标题 1" icon="twemoji:astonished-face"
这里是卡片内容。
:::
::: card title="卡片标题 2" icon="twemoji:astonished-face"
这里是卡片内容。
:::
::::卡片标题 1
这里是卡片内容。
卡片标题 2
这里是卡片内容。
::: tabs
@tab npm
npm 应该与 Node.js 被一同安装。
@tab pnpm
```sh
corepack enable
corepack use pnpm@8
```
:::npm 应该与 Node.js 被一同安装。
corepack enable
corepack use pnpm@8<CardGrid>
<ImageCard
image="https://cn.bing.com/th?id=OHR.AlfanzinaLighthouse_ZH-CN9704515669_1920x1080.webp"
title="阿尔凡齐纳灯塔,阿尔加维,葡萄牙"
description="..."
href="/"
author="Andreas Kunz"
date="2024/08/16"
/>
<ImageCard
image="https://cn.bing.com/th?id=OHR.AlfanzinaLighthouse_ZH-CN9704515669_1920x1080.webp"
title="阿尔凡齐纳灯塔,阿尔加维,葡萄牙"
description="..."
href="/"
author="Andreas Kunz"
date="2024/08/16"
/>
</CardGrid>

@[bilibili p1 autoplay time="0" width="100%" height="400px" ratio="16:9"](bvid aid cid)title(string-opt): 表格标题,显示在表格的下方align(['left' | 'center' | 'right']-opt): 表格对齐方式copy([boolean | 'all' | 'html' | 'md']-opt): 在表格的右上角显示复制按钮,可以复制为 html / markdownmaxContent(boolean-opt): 行内元素不再自动换行,超出容器宽度时表格显示滚动条hl-rows="tip:1;warning:2;important:3,4"hl-cols="success:1;warning:2;danger:3,4"hl-cells="danger:(1,1)(2,2);success:(3,3)(4,4);warning:(1,4)(2,3);important:(3,2)(4,1)"::: table title="这是表格标题" align="center" max-content
| ID | Description | Status |
|----|-----------------------------------------------------------------------------|--------------|
| 1 | This is an extremely long description that should trigger text wrapping in most table implementations. | In Progress |
| 2 | Short text | ✅ Completed |
:::| ID | Description | Status |
|---|---|---|
| 1 | This is an extremely long description that should trigger text wrapping in most table implementations. | In |
| Progress | ||
| 2 | Short text | ✅ Completed |
这是表格标题
- home - <Icon name="material-symbols:home" color="currentColor" size="1em" />
- vscode - <Icon name="skill-icons:vscode-dark" size="2em" />
- twitter - <Icon name="skill-icons:twitter" size="2em" />
- idea - <Icon name="skill-icons:idea-dark" size="2em" />:::: steps
1. 步骤 1
```ts
console.log('Hello World!')
```
2. 步骤 2
这里是步骤 2 的相关内容
3. 步骤 3
::: tip
提示容器
:::
4. 结束
::::步骤 1
console.log('Hello World!')步骤 2
这里是步骤 2 的相关内容
步骤 3
提示
提示容器
结束
::: file-tree
- docs
- .vuepress
- ++ config.ts
- -- page1.md
- README.md
- theme 一个 **主题** 目录
- client
- components
- **Navbar.vue**
- composables
- useNavbar.ts
- styles
- navbar.css
- config.ts
- node/
- package.json
- pnpm-lock.yaml
- .gitignore
- README.md
- …
:::docs
.vuepress
config.ts
page1.md
README.md
theme一个 主题 目录
client
components
Navbar.vue
composables
useNavbar.ts
styles
navbar.css
config.ts
node
…
package.json
pnpm-lock.yaml
.gitignore
README.md
…
数学表达式: $-(2^{n-1})$ ~ $2^{n-1} -1$
$\frac {\partial^r} {\partial \omega^r} \left(\frac {y^{\omega}} {\omega}\right)
= \left(\frac {y^{\omega}} {\omega}\right) \left\{(\log y)^r + \sum_{i=1}^r \frac {(-1)^ Ir \cdots (r-i+1) (\log y)^{ri}} {\omega^i} \right\}$
19^th^
H~2~O数学表达式: −(2n−1) ~ 2n−1−1
∂ωr∂r(ωyω)=(ωyω){(logy)r+∑i=1rωi(−1)Ir⋯(r−i+1)(logy)ri}
19th
H2O
- <Badge type="info" text="info badge" />
- <Badge type="tip" text="tip badge" />
- <Badge type="warning" text="warning badge" />
- <Badge type="danger" text="danger badge" />[!code warning]
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}[!code word:std] | [!code highlight] | [!code error]
#include <iostream>
using namespace std;
int main() {
cout << "Hello, World!" << endl;
return 0
}[!code ++]
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}[!code --]
print("Hello, World!")[!code focus]
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}常规示例
一个常规示例
<div id="app">
<h3>vuepress-theme-plume</h3>
</div>const a = 'So Awesome!'
const app = document.querySelector('#app')
app.appendChild(window.document.createElement('small')).textContent = a#app {
font-size: 2em;
text-align: center;
}`ha ji mi` man bo ~
加粗:**加粗文字**
斜体: *斜体文字*
~~删除文字~~
内容 ==标记==
> 引用内容
>
> 引用内容
[链接](/)
[外部链接](https://github.com/caobaoqi6040)

::: center
内容居中
:::
::: right
内容右对齐
:::
- 无序列表1
- 无序列表2
- 无序列表3
1. 有序列表1
2. 有序列表2
3. 有序列表3
- [ ] 任务列表1
- [ ] 任务列表2
- [x] 任务列表3
- [x] 任务列表4
| Tables | Are | Cool |
|---------------|:-------------:|------:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
> [!note]
> note
> [!info]
> info
> [!tip]
> tip
> [!warning]
> warning
> [!caution]
> caution
> [!important]
> important178b8-🎉 init: 美丽的鸡于 版权归属:HMM