{%- if arg.help_md %}
{{ arg.help_md | escape_md }}
{%- endif %}
{%- if arg.choices and arg.choices.choices %}
**Choices:**
{% for choice in arg.choices.choices %}
- `{{ choice }}`
{%- endfor %}
{%- endif %}
{%- if arg.choices and arg.choices.env %}
**Choices Environment Variable:** `{{ arg.choices.env }}`
{%- endif %}
{%- if arg.default | length > 0 %}
**Default:** {% for d in arg.default %}`{{ d }}`{% if not loop.last %}, {% endif %}{% endfor %}
{%- endif %}
{%- if arg.env %}
**Environment Variable:** `{{ arg.env }}`
{%- endif -%}
{%- if arg.env_fallback | length > 0 %}
**Environment Fallbacks:** {% for env in arg.env_fallback %}`{{ env }}`{% if not loop.last %}, {% endif %}{% endfor %}
{%- endif %}
{%- if arg.deprecated_env | length > 0 %}
**Deprecated Environment Variables:** {% for env in arg.deprecated_env %}`{{ env }}`{% if not loop.last %}, {% endif %}{% endfor %}
{%- endif -%}