--- --- {% assign terms = "" | split : "|" %} {% for annotation in site.data.annotations %} {% if annotation.tags contains "+glossary" %} {% assign term = "XXX" %} {% for selector in annotation.target[0].selector %} {% if selector.type == "TextQuoteSelector" %} {% assign term = selector.exact | downcase %} {% endif %} {% endfor %} {% assign terms = terms | push: term %} {% endif %} {% endfor %}

Net Rights + Cryptography + Decentralization
/ Glossary

{% assign index = terms | sort | group_by_exp: "t", 't | truncate: 1, ""' %}
    {% for letter in index %}
  • {{ letter.name }}
      {% for term in letter.items %}
    • {{ term }}
    • {% endfor %}
  • {% endfor %}
{% assign terms = terms | sort %} {% for term in terms %}

{{ term }} {% for annotation in site.data.annotations %} {% for selector in annotation.target[0].selector %} {% if selector.type == "TextQuoteSelector" %} {% assign exact = selector.exact | downcase %} {% endif %} {% endfor %} {% if exact == term and annotation.tags contains "+glossary" %} # {% endif %} {% endfor %}

Definitions
{% for annotation in site.data.annotations %} {% if annotation.tags contains term and annotation.tags contains "definition" %} {% include card.quote.html %} {% endif %} {% endfor %}
References
{% for annotation in site.data.annotations %} {% assign exact = "" %} {% for selector in annotation.target[0].selector %} {% if selector.type == "TextQuoteSelector" %} {% assign exact = selector.exact | downcase %} {% endif %} {% endfor %} {% if exact contains term %} {% unless annotation.tags contains "+glossary" %} {% include card.quote.html %} {% endunless %} {% endif %} {% endfor %}
{% endfor %}