From 899f9f506d3796f357ac88f6d8e4ebacd4c6c55f Mon Sep 17 00:00:00 2001 From: Tim Soderstrom Date: Thu, 21 Jul 2016 10:23:53 -0500 Subject: [PATCH] Line wrap was causing formatting shenaigans (#666) There were a ton of trailing spaces at the end of some of the YAML definitions which caused the resulting output to look rather ugly. --- source/_components/group.markdown | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/source/_components/group.markdown b/source/_components/group.markdown index 3eb481b314f..c26b435e6e8 100644 --- a/source/_components/group.markdown +++ b/source/_components/group.markdown @@ -64,11 +64,13 @@ Notice in the example below that in order to refer to the group "Living Room", y entities: - light.light_family_1 - binary_sensor.motion_living + Bedroom: light.light_bedroom, switch.sleeping - Rooms: - view: yes + + Rooms: + view: yes name: Rooms - entities: - - group.living_room + entities: + - group.living_room - group.bedroom -``` \ No newline at end of file +```