mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-06 19:18:59 +00:00
677 B
677 B
title, description
title | description |
---|---|
Glossary | Home Assistant's Glossary. |
The glossary covers terms which are used around Home Assistant.
{% assign entries = site.data.glossary | sort: 'term' %} {% assign current_letter = '' %}
{% for entry in entries %}
{% assign first_letter = entry.term | slice: 0 %} {% if first_letter != current_letter %} {% assign current_letter = first_letter | upcase %}
{{ current_letter }}
{% endif %}
{{ entry.term }}
{{ entry.definition | markdownify }}
{%- if entry.link -%}
{{ "[Read more about " | append: "" | append: entry.term | append: "](" | append: entry.link | append: ")" | markdownify }}
{%- endif -%}
{% endfor %}