From 418869c9b1c83d7d97158392a1cb6d64fe66f35c Mon Sep 17 00:00:00 2001 From: Manuel Zubieta Date: Thu, 7 Mar 2019 04:55:37 -0600 Subject: [PATCH] Note how !include_dir* funcs do not support .yml extension (#8846) Addresses #16808. I don't believe it's necessary to support `.yml` files, but explicitly noting this would be helpful for others. --- source/_docs/configuration/splitting_configuration.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/configuration/splitting_configuration.markdown b/source/_docs/configuration/splitting_configuration.markdown index c04bd04460c..2fe7bb652a2 100644 --- a/source/_docs/configuration/splitting_configuration.markdown +++ b/source/_docs/configuration/splitting_configuration.markdown @@ -165,7 +165,7 @@ You can get help from the command line using: `hass --script check_config --help ### {% linkable_title Advanced Usage %} -We offer four advanced options to include whole directories at once. +We offer four advanced options to include whole directories at once. Please note that your files must have the `.yaml` file extension; `.yml` is not supported. - `!include_dir_list` will return the content of a directory as a list with each file content being an entry in the list. - `!include_dir_named` will return the content of a directory as a dictionary which maps filename => content of file. - `!include_dir_merge_list` will return the content of a directory as a list by merging all files (which should contain a list) into 1 big list.