aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/sidebars.js
blob: a3b4ea2ce7465c4dc45f5af9d17e33bbe6ca3bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
module.exports = {
  docs: {
    "Getting Started": [
      "intro",
      "hardware",
      "faq",
      "user-setup",
      "customization",
      "troubleshooting",
    ],
    Features: [
      "features/keymaps",
      "features/bluetooth",
      "features/combos",
      "features/conditional-layers",
      "features/debouncing",
      "features/displays",
      "features/encoders",
      "features/underglow",
      "features/backlight",
      "features/battery",
      "features/soft-off",
      "features/beta-testing",
    ],
    Behaviors: [
      "behaviors/index",
      "behaviors/key-press",
      "behaviors/layers",
      "behaviors/misc",
      "behaviors/hold-tap",
      "behaviors/mod-tap",
      "behaviors/mod-morph",
      "behaviors/macros",
      "behaviors/key-toggle",
      "behaviors/sticky-key",
      "behaviors/sticky-layer",
      "behaviors/tap-dance",
      "behaviors/caps-word",
      "behaviors/key-repeat",
      "behaviors/sensor-rotate",
      "behaviors/mouse-emulation",
      "behaviors/reset",
      "behaviors/bluetooth",
      "behaviors/outputs",
      "behaviors/underglow",
      "behaviors/backlight",
      "behaviors/power",
      "behaviors/soft-off",
    ],
    Codes: [
      "codes/index",
      "codes/keyboard-keypad",
      "codes/modifiers",
      "codes/editing",
      "codes/media",
      "codes/applications",
      "codes/input-assist",
      "codes/power",
    ],
    Configuration: [
      "config/index",
      "config/backlight",
      "config/battery",
      "config/behaviors",
      "config/bluetooth",
      "config/combos",
      "config/displays",
      "config/encoders",
      "config/keymap",
      "config/kscan",
      "config/power",
      "config/underglow",
      "config/system",
    ],
    Development: [
      "development/clean-room",
      "development/pre-commit",
      "development/documentation",
      {
        type: "category",
        label: "Setup",
        collapsed: true,
        items: [
          "development/setup/index",
          "development/setup/docker",
          "development/setup/native",
        ],
      },
      "development/build-flash",
      "development/boards-shields-keymaps",
      "development/posix-board",
      "development/tests",
      "development/usb-logging",
      "development/ide-integration",
      {
        type: "category",
        label: "Guides",
        collapsed: false,
        items: [
          "development/new-shield",
          "development/hardware-metadata-files",
          "development/new-behavior",
        ],
      },
    ],
  },
};