From 614e17d291786655dbebbd35a831d68de138d70c Mon Sep 17 00:00:00 2001 From: Jorim Tielemans Date: Sun, 20 Jan 2019 20:56:50 +0100 Subject: [PATCH] Fix service call list (#8219) This was intended as a list but was all on a single line --- source/_docs/scripts/service-calls.markdown | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/source/_docs/scripts/service-calls.markdown b/source/_docs/scripts/service-calls.markdown index 2724a7a0784..3216b3de89d 100644 --- a/source/_docs/scripts/service-calls.markdown +++ b/source/_docs/scripts/service-calls.markdown @@ -61,10 +61,9 @@ You can use the Services Developer Tool to test data to pass in a service call. For example, you may test turning on or off a 'group' (See [groups] for more info) To turn a group on or off, pass the following info: -Domain: `homeassistant` -Service: `turn_on` -Service Data: `{ "entity_id": "group.kitchen" }` - +- Domain: `homeassistant` +- Service: `turn_on` +- Service Data: `{ "entity_id": "group.kitchen" }` ### {% linkable_title Use templates to determine the attributes %}