{% for option in option_list %}
{% if option.dest %}
{% set value = str(getattr(options, option.dest)) %}
{% set default = value == str(getattr(default_options, option.dest)) %}
{{ option.dest }}
{% if not default %}{% endif %}{{ value }}{% if not default %}{% endif %}
{{ option.help }}
{% endif %}
{% endfor %}
{%- endmacro %}
{{ log_option_list('Options that differ from the defaults are emphasised', option_parser.option_list, options) }}
{% for option_group in option_parser.option_groups %}
{{ log_option_list(option_group.title + ' options', option_group.option_list, options) }}
{% endfor %}