{{ "\x1b[1m" }}NAME{{ "\x1b[m" }}
    {{ name }} - {{ command['documentation_head'] }}

{% include 'usage' %}


{{ "\x1b[1m" }}DESCRIPTION{{ "\x1b[m" }}
{{ command['documentation_body']|indent(4, True) }}

{% if options %}
{{ "\x1b[1m" }}OPTIONS{{ "\x1b[m" }}
{% for name, option in options|dictsort %}
    {{ option.flags|join(', ') }}
        {{ option.help }}
{% endfor %}
{% endif %}

{% if subcommands %}
{{ "\x1b[1m" }}SUBCOMMANDS{{ "\x1b[m" }}
{% for name, subcommand in subcommands|dictsort %}
    {{ name }} - {{ subcommand['documentation_head'] }}
{% endfor %}
{% endif %}
