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

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

463 B

Collapse

Create collapsible panels using ::: collapse.

Syntax

::: collapse [accordion] [expand]
- Title 1
  Content 1

- Title 2
  Content 2
:::
  • accordion: Only one panel expanded at a time.
  • expand: Expand all by default.
  • :+ Title: Mark specific item as expanded.
  • :- Title: Mark specific item as collapsed.

Example

::: collapse accordion
- Panel 1
  Content 1

- :+ Panel 2 (Initially Expanded)
  Content 2
:::