Fix Liquid error introduced with #3573

This commit is contained in:
Fabian Affolter 2017-10-11 12:52:01 +02:00
parent 8fc24b81e7
commit 88d1c2a30b
No known key found for this signature in database
GPG Key ID: DDF3D6F44AAB1336

View File

@ -19,12 +19,13 @@ Home Assistant contains an embedded MQTT broker. If no broker configuration is g
| Setting | Value | | Setting | Value |
| -------------- | ----- | | -------------- | ----- |
| Host | localhost | Host | localhost |
| Port | 1883 | Port | 1883 |
| Protocol | 3.1.1 | Protocol | 3.1.1 |
| User | homeassistant | User | homeassistant |
| Password | Your API [password](/components/http/) | Password | Your API [password](/components/http/) |
| Websocket port | 8080 | Websocket port | 8080 |
```yaml ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
@ -59,8 +60,6 @@ mqtt:
broker: 192.168.1.100 broker: 192.168.1.100
``` ```
Configuration variables:
{% configuration %} {% configuration %}
broker: broker:
required: false required: false
@ -88,7 +87,7 @@ password:
type: string type: string
protocol: protocol:
required: false required: false
description: Protocol to use: 3.1 or 3.1.1. By default it connects with 3.1.1 and falls back to 3.1 if server does not support 3.1.1. description: "Protocol to use: 3.1 or 3.1.1. By default it connects with 3.1.1 and falls back to 3.1 if server does not support 3.1.1."
type: string type: string
certificate: certificate:
required: false required: false
@ -100,7 +99,7 @@ tls_insecure:
type: boolean type: boolean
tls_version: tls_version:
required: false required: false
description: TLS/SSL protocol version to use. Available options are: `auto`, `1.0`, `1.1`, `1.2`. Defaults to `auto`. description: "TLS/SSL protocol version to use. Available options are: `auto`, `1.0`, `1.1`, `1.2`. Defaults to `auto`."
type: string type: string
{% endconfiguration %} {% endconfiguration %}