{% extends "base.html" %} {% set active = 'glossary' %} {% block title %}术语 · DocGraph{% endblock %} {% block content %}

术语 / 缩写 ({{ nodes|length }})

{% if not nodes %}

没有术语节点。spec 中如有"abbreviations / 缩写"章节会被 GlossaryExtractor 抓出来。

{% else %}
{% for n in nodes %}
{{ n.name }} {{ n.attrs.get('full') or (n.aliases[0] if n.aliases else '') }}
{% endfor %}
{% endif %} {% endblock %}