Skip to content

Latest commit

 

History

History
35 lines (32 loc) · 843 Bytes

File metadata and controls

35 lines (32 loc) · 843 Bytes
title Pages & Routing
icon app-window

Pages & Routing {subtitle="Start structuring docs"}

One of the core concepts are pages and routing.

Page [toc]

├ folder-name
│  └─ your-page-within-folder.md
|
├─ your-page.md
|
└─ docs.json

Routing [toc]

 

{
  "sidebar": [
    {
      "group": "Get Started",
      "icon": "code",
      "pages": [
          "your-page",
          "folder-name/your-page-within-folder",
      ]
    }
    // ... other groups
  ]
}