{%- if arg.help_long_md %}{% set help = arg.long_help %}{% elif arg.help_long %}{% set help = arg.help_long %}{% else %}{% set help = arg.help %}{% endif %}
{%- if help %}
{{ help | escape_md }}
{%- endif %}
{%- if arg.choices %}
**Choices:**
{% for choice in arg.choices.choices %}
- `{{ choice }}`
{%- endfor %}
{%- endif %}
{%- if arg.default %}
**Default:** `{{ arg.default }}`
{%- endif %}
{%- if arg.env %}
**Environment Variable:** `{{ arg.env }}`
{%- endif -%}