diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-09-11 18:33:17 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-09-11 18:33:17 -0700 |
commit | e9afb41bed9a723876cf1cf95d636b2ea498a6b3 (patch) | |
tree | 35387d7f3df1d28d742b3289c7ff930caa457d8e /docs/sidebars.js | |
parent | 0c9482681f28720dcf75b2ab9d1bbf4d148912d7 (diff) | |
download | sncontinue-e9afb41bed9a723876cf1cf95d636b2ea498a6b3.tar.gz sncontinue-e9afb41bed9a723876cf1cf95d636b2ea498a6b3.tar.bz2 sncontinue-e9afb41bed9a723876cf1cf95d636b2ea498a6b3.zip |
docs: :memo: working on autogenerated docs
Diffstat (limited to 'docs/sidebars.js')
-rw-r--r-- | docs/sidebars.js | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/docs/sidebars.js b/docs/sidebars.js index 6d205bab..2121fea6 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -18,11 +18,40 @@ const sidebars = { "getting-started", "how-to-use-continue", "how-continue-works", - "customization", - "context-providers", + { + type: "category", + label: "Customization", + collapsible: true, + collapsed: false, + items: [ + "customization/models", + "customization/context-providers", + "customization/slash-commands", + "customization/other-configuration", + ], + }, "collecting-data", "telemetry", "troubleshooting", + { + type: "category", + label: "Walkthroughs", + collapsible: true, + collapsed: false, + items: ["walkthroughs/codellama"], + }, + { + type: "category", + label: "Reference", + collapsible: true, + collapsed: false, + items: [ + { + type: "autogenerated", + dirName: "reference", + }, + ], + }, ], }; |