From fe55a42c182ee186ff8051c270d37506a67e8447 Mon Sep 17 00:00:00 2001 From: Phil Hawthorne Date: Sun, 9 Oct 2016 19:22:11 +1100 Subject: [PATCH] Display template tags in Pushbullet Home Assistant release example (#1195) The template example introduced in #1100 needs some tags around the template tags so that Jekyll doesn't try to interpret the code. --- source/_cookbook/notify_if__new_ha_release.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_cookbook/notify_if__new_ha_release.markdown b/source/_cookbook/notify_if__new_ha_release.markdown index 62e92ac57af..301021d02f9 100644 --- a/source/_cookbook/notify_if__new_ha_release.markdown +++ b/source/_cookbook/notify_if__new_ha_release.markdown @@ -49,6 +49,6 @@ automation: data: title: 'New Home Assistant Release' target: 'YOUR_TARGET_HERE' #See Pushbullet component for usage - message: "Home Assistant {{ states.updater.updater.state }} is now available." + message: "Home Assistant {% raw %} {{ states.updater.updater.state }} {% raw %} is now available." ```