pengzhanbo 07c274cdbf
feat: add agent skills (#823)
* feat: add agent skills

* chore: tweak
2026-01-29 15:52:29 +08:00

26 lines
274 B
Markdown

# Tabs
Create tabbed content using `::: tabs`.
## Syntax
- `::: tabs[#id]`: Container.
- `@tab Title`: Tab separator.
- `@tab:active Title`: Default active tab.
## Example
````md
::: tabs
@tab npm
```sh
npm install
```
@tab:active pnpm
```sh
pnpm install
```
:::
````