From 6effb54647f8f5221454cd5e4a0878cbad2971cb Mon Sep 17 00:00:00 2001 From: David Date: Thu, 6 Oct 2016 20:28:18 +0200 Subject: [PATCH] Fix for merged PR #1140 (#1152) had to add `raw` and `endraw` tags to make the variables in the script show up --- source/_components/script.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/script.markdown b/source/_components/script.markdown index 48565728cb1..c3457fd0458 100644 --- a/source/_components/script.markdown +++ b/source/_components/script.markdown @@ -103,6 +103,6 @@ script: state: 'on' - service: notify.pushover data_template: - title: "{{ title }}" - message: "{{ message }}" + title: "{% raw %}{{ title }}{% endraw %}" + message: "{% raw %}{{ message }}{% endraw %}" ```