usage-lib 3.2.1

Library for working with usage specs
Documentation
{%- 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 -%}