Using the taxonomylist plugin. How would I sort these alphabetically by tag?
{% set taxlist = taxonomylist.get() %}
{% if taxlist %}
<span class="tags">
{% for tax,value in taxlist[taxonomy] %}
<a class="btn btn-default btn-xs" href="{{ base_url }}/notes/tag{{ config.system.param_sep }},{{ tax|e('url') }}">{{ tax }}</a>
{% endfor %}
</span>
{% endif %}