From 23eee4dd0770a6c34770eaa63eff08c3535eab7e Mon Sep 17 00:00:00 2001 From: Sebastian Englbrecht Date: Fri, 25 Nov 2022 19:14:55 +0100 Subject: [PATCH] Each topic gets a folder --- docs/docs/{ => development}/contributing.md | 0 docs/docs/{ => frigate}/hardware.md | 0 docs/docs/{ => frigate}/index.md | 0 docs/docs/{ => frigate}/installation.md | 0 docs/docs/{ => troubleshooting}/faqs.md | 0 docs/sidebars.js | 14 +++++++++++--- 6 files changed, 11 insertions(+), 3 deletions(-) rename docs/docs/{ => development}/contributing.md (100%) rename docs/docs/{ => frigate}/hardware.md (100%) rename docs/docs/{ => frigate}/index.md (100%) rename docs/docs/{ => frigate}/installation.md (100%) rename docs/docs/{ => troubleshooting}/faqs.md (100%) diff --git a/docs/docs/contributing.md b/docs/docs/development/contributing.md similarity index 100% rename from docs/docs/contributing.md rename to docs/docs/development/contributing.md diff --git a/docs/docs/hardware.md b/docs/docs/frigate/hardware.md similarity index 100% rename from docs/docs/hardware.md rename to docs/docs/frigate/hardware.md diff --git a/docs/docs/index.md b/docs/docs/frigate/index.md similarity index 100% rename from docs/docs/index.md rename to docs/docs/frigate/index.md diff --git a/docs/docs/installation.md b/docs/docs/frigate/installation.md similarity index 100% rename from docs/docs/installation.md rename to docs/docs/frigate/installation.md diff --git a/docs/docs/faqs.md b/docs/docs/troubleshooting/faqs.md similarity index 100% rename from docs/docs/faqs.md rename to docs/docs/troubleshooting/faqs.md diff --git a/docs/sidebars.js b/docs/sidebars.js index e5192d2cd..85d9330f0 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -1,6 +1,10 @@ module.exports = { docs: { - Frigate: ["index", "hardware", "installation"], + Frigate: [ + "frigate/index", + "frigate/hardware", + "frigate/installation", + ], Guides: [ "guides/camera_setup", "guides/getting_started", @@ -30,7 +34,11 @@ module.exports = { "integrations/api", "integrations/mqtt", ], - Troubleshooting: ["faqs"], - Development: ["contributing"], + Troubleshooting: [ + "troubleshooting/faqs", + ], + Development: [ + "development/contributing", + ], }, };