From b301953249a268e4cb3e1b61192e2f2523985fd1 Mon Sep 17 00:00:00 2001 From: Svilen Markov <7613769+svilenmarkov@users.noreply.github.com> Date: Mon, 10 Feb 2025 20:38:50 +0000 Subject: [PATCH] Update docs --- docs/configuration.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 0cee1ec..79f9d88 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -97,9 +97,9 @@ Including config files from within your main config file is supported. This is d ```yaml pages: - !include home.yml - !include videos.yml - !include homelab.yml + !include: home.yml + !include: videos.yml + !include: homelab.yml ``` The file you are including should not have any additional indentation, its values should be at the top level and the appropriate amount of indentation will be added automatically depending on where the file is included. Example: @@ -112,14 +112,14 @@ pages: columns: - size: full widgets: - !include rss.yml + !include: rss.yml - name: News columns: - size: full widgets: - type: group widgets: - !include rss.yml + !include: rss.yml - type: reddit subreddit: news ```