continuwuity/xtask/templates/admin/category.md
Ginger 89be9d1efc
feat: Improve admin command reference generation
- Change xtasks to use `clap` for argument parsing
- Generate admin command reference manually instead of with `clap_markdown`
- Split admin command reference into multiple files
2026-01-12 10:36:37 -05:00

10 lines
213 B
Markdown

# `!admin {{ name }}`
{{ description }}
{% for command in commands %}
{% let header = "#".repeat((command.depth + 1).min(3)) -%}
{{ header }} `!admin {{ command.name }}`
{{ command.description }}
{% endfor %}