From 8cfcd84e975044c485fc73f31f857ce84fad1570 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 16 Jul 2017 12:24:04 -0700 Subject: [PATCH] Fix feedreader warning --- source/_components/feedreader.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/feedreader.markdown b/source/_components/feedreader.markdown index fbd68c63e5d..6fd6bfedd45 100644 --- a/source/_components/feedreader.markdown +++ b/source/_components/feedreader.markdown @@ -52,8 +52,8 @@ automation: service: persistent_notification.create data_template: title: "New HA Podcast available" - message: "New Podcast available - {{ as_timestamp(now()) | timestamp_custom('%I:%M:%S %p %d%b%Y', true) }}" - notification_id: "{{ trigger.event.data.title }}" + message: {% raw %}"New Podcast available - {{ as_timestamp(now()) | timestamp_custom('%I:%M:%S %p %d%b%Y', true) }}" + notification_id: "{{ trigger.event.data.title }}"{% endraw %} ``` *Any field under the `` tag in the feed can be used for example `trigger.event.data.content` will get the body of the feed entry.