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

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

27 lines
397 B
Markdown

# Code Tree
Display a file tree alongside code blocks.
## Syntax
````md
::: code-tree title="Project Name" height="400px" entry="src/main.ts"
```lang title="src/main.ts"
// code
```
```lang title="package.json"
// code
```
:::
````
- `entry`: Default expanded file path.
- `title` on code blocks: Defines the file path in the tree.
## Import from Directory
```md
@[code-tree](dir_path)
```