1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-25 22:12:29 +02:00

Доработка формирования доков

This commit is contained in:
Anton Titovets
2025-05-27 14:22:28 +03:00
parent 5cfde077c6
commit c18c237b33
10 changed files with 18124 additions and 24572 deletions

View File

@@ -1,4 +1,4 @@
export default {
const sidebars = {
docs: [
{
@@ -106,4 +106,55 @@
]
}
],
addonsSidebar: [
{
type: 'doc',
id: 'Addons/About-Addons',
label: 'Об аддонах',
className: 'Addons',
},
{
type: 'doc',
id: 'Addons/Melezh',
label: 'Melezh',
className: 'Melezh',
},
// другие аддоны...
],
// Сайдбар деталей конкретного аддона (Melezh)
melezhSidebar: [
{
type: 'category',
label: 'О Melezh',
className: 'Info',
link: {
type: 'doc',
id: 'Addons/Melezh/Overview'
},
items: [{ type: 'autogenerated', dirName: 'Addons/Melezh/Start' }]
},
{
type: 'category',
label: 'Web-интерфейс',
className: 'WebUI',
items: [
{ type: 'autogenerated', dirName: 'Addons/Melezh/Web-Interface' },
]
},
{
type: 'category',
label: 'Консольный интерфейс',
className: 'CL',
items: [
{ type: 'autogenerated', dirName: 'Addons/Melezh/Console-Interface' },
]
},
]
};
module.exports = sidebars;