mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-18 23:06:58 +00:00
Initial glossary (#3568)
* Initial glossary * Allow markdown in the description
This commit is contained in:
parent
53185d3a80
commit
82dea44109
17
source/_data/glossary.yml
Normal file
17
source/_data/glossary.yml
Normal file
@ -0,0 +1,17 @@
|
||||
- topic: Platform
|
||||
description: A platform makes the connection to a specific software or hardware platform. The `pushbullet` platform works with the service from pushbullet.com.
|
||||
- topic: Component
|
||||
description: "The components provide the core logic for the functionality in Home Assistant. Like `notify` provides sending notifications."
|
||||
- topic: Service
|
||||
description: "[Services](/docs/scripts/service-calls/) are called to perform actions."
|
||||
- topic: Event
|
||||
description: When somethings happen.
|
||||
- topic: Entity
|
||||
description: An entity is the representation of a single device, unit or web service.
|
||||
- topic: Device
|
||||
description: "Usually this is a physical unit which can do or observe something."
|
||||
- topic: hass
|
||||
description: "Often used abbreviation for Home Assistant."
|
||||
- topic: Discovery
|
||||
description: The automatic setup of zeroconf/mDNS and uPnP devices after they are discovered.
|
||||
|
20
source/_docs/glossary.markdown
Normal file
20
source/_docs/glossary.markdown
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Glossary"
|
||||
description: "Home Assistant's Glossary."
|
||||
date: 2017-10-08 08:30
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
---
|
||||
|
||||
{% assign entries = site.data.glossary | sort: 'topic' %}
|
||||
|
||||
<ul>
|
||||
{% for entry in entries %}
|
||||
<li>
|
||||
<b>{{ entry.topic }}</b>: {{ entry.description | markdownify }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
@ -3,7 +3,8 @@
|
||||
<h1 class="title delta">Topics</h1>
|
||||
<ul class='divided sidebar-menu'>
|
||||
<li>
|
||||
<b>{% active_link /faq/ FAQ %}</b>
|
||||
<b>{% active_link /faq/ FAQ %}</b> |
|
||||
<b>{% active_link /docs/glossary/ Glossary %}</b>
|
||||
</li>
|
||||
<li>
|
||||
<b>{% active_link /docs/installation/ Installation %}</b>
|
||||
|
Loading…
x
Reference in New Issue
Block a user