mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-21 01:26:50 +00:00
34 lines
677 B
Markdown
34 lines
677 B
Markdown
---
|
|
title: "Glossary"
|
|
description: "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 %}
|