diff --git a/source/_cookbook/automation_for_rainy_days.markdown b/source/_cookbook/automation_for_rainy_days.markdown index 4447f4cc386..41cc17f406e 100644 --- a/source/_cookbook/automation_for_rainy_days.markdown +++ b/source/_cookbook/automation_for_rainy_days.markdown @@ -9,7 +9,7 @@ sharing: true footer: true --- -### Rainy Day Light ### +### {% linkable_title Rainy Day Light %} This requires a [forecast.io](components/sensor.forecast/) sensor with the condition `weather_precip` that tells if it's raining or not. diff --git a/source/_cookbook/basic_example_use_trigger_values.markdown b/source/_cookbook/basic_example_use_trigger_values.markdown index d1f6d286448..cbff5a43b62 100644 --- a/source/_cookbook/basic_example_use_trigger_values.markdown +++ b/source/_cookbook/basic_example_use_trigger_values.markdown @@ -9,7 +9,7 @@ sharing: true footer: true --- -### Basic example for use_trigger_values ### +### {% linkable_title Basic example for use_trigger_values %} Turn on lights during daytime when it's dark enough < 200 lux. diff --git a/source/_cookbook/dim_lights_when_playing_media.markdown b/source/_cookbook/dim_lights_when_playing_media.markdown index 6a87446b530..488d5752b96 100644 --- a/source/_cookbook/dim_lights_when_playing_media.markdown +++ b/source/_cookbook/dim_lights_when_playing_media.markdown @@ -11,13 +11,10 @@ footer: true Like it how the lights dim up/down at the movies? Do it at home as well! -This example uses the media player, Philips Hue (transitions) and the sun component. -We'll use actions to detect media player state changes and scenes to control multiple -lights, color settings and transition between scenes. +This example uses the media player, Philips Hue (transitions) and the sun component. We'll use actions to detect media player state changes and scenes to control multiple lights, color settings and transition between scenes. -#### Scenes -One scene for normal light, one for when movies are on. -A 2 second transition gives a nice 'feel' to the switch. +#### {% linkable_title Scenes %} +One scene for normal light, one for when movies are on. A 2 second transition gives a nice 'feel' to the switch. ```yaml scene: @@ -48,9 +45,8 @@ scene: ``` -#### Automation -The paused/stopped state is best matched using "from: 'playing'". -Adding in the sun condition as we only want this when it's dark. +#### {% linkable_title Automation %} +The paused/stopped state is best matched using "from: 'playing'". Adding in the sun condition as we only want this when it's dark. ```yaml automation: diff --git a/source/_cookbook/turn_on_light_for_10_minutes_when_motion_detected.markdown b/source/_cookbook/turn_on_light_for_10_minutes_when_motion_detected.markdown index 20c46b39beb..ff04a27bfa9 100644 --- a/source/_cookbook/turn_on_light_for_10_minutes_when_motion_detected.markdown +++ b/source/_cookbook/turn_on_light_for_10_minutes_when_motion_detected.markdown @@ -9,7 +9,7 @@ sharing: true footer: true --- -#### Turn on lights with a resettable off timer #### +#### {% linkable_title Turn on lights with a resettable off timer %} This recipe will turn on a light when there is motion and turn off the light when ten minutes has passed without any motion events .