Initial glossary (#3568)
* Initial glossary * Allow markdown in the description
This commit is contained in:
parent
53185d3a80
commit
82dea44109
3 changed files with 39 additions and 1 deletions
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>
|
Loading…
Add table
Add a link
Reference in a new issue