- 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
10 lines
213 B
Markdown
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 %}
|