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

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

30 lines
355 B
Markdown

# Flex Container
Apply Flexbox layout using `::: flex`.
## Syntax
```md
::: flex [justify] [align] [gap="20"] [column]
Block 1
Block 2
:::
```
- Justify: `center`, `between`, `around`
- Align: `start`, `center`, `end`
- `column`: Vertical direction.
## Example
```md
::: flex between center
| Table 1 |
| ------- |
| Table 2 |
| ------- |
:::
```