-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathsidebars.compact.js
More file actions
48 lines (46 loc) · 1.64 KB
/
sidebars.compact.js
File metadata and controls
48 lines (46 loc) · 1.64 KB
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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
compactSidebar: [
{
type: "category",
label: "Compact language",
collapsed: false,
link: { type: "doc", id: "index" },
items: [
"writing", // docs/develop/reference/compact/writing.md(x)
"compact-reference", // docs/develop/reference/compact/compact-reference.md(x)
"compact-grammar", // docs/develop/reference/compact/compact-grammar.md(x)
"compact-keywords", // docs/develop/reference/compact/compact-keywords.md(x)
"ledger-adt", // docs/develop/reference/compact/ledger-adt.md(x)
"opaque_data", // docs/develop/reference/compact/opaque_data.md(x)
"explicit-disclosure", // docs/develop/reference/compact/explicit-disclosure.md(x)
{
type: "category",
label: "Compact standard library",
link: {
type: "doc",
id: "compact-std-library/README",
},
items: [
"compact-std-library/exports",
],
},
],
},
{
type: "category",
label: "Tools",
link: { type: "doc", id: "reference/tools/index" }, // docs/develop/reference/tools/index.md(x)
items: [
"reference/tools/compiler-usage", // docs/develop/reference/tools/compiler-usage.md(x)
{
type: "category",
label: "VS Code plugin",
link: { type: "doc", id: "reference/tools/vsc-plugin/index" }, // .../vsc-plugin/index.md(x)
items: [],
},
],
},
],
};
module.exports = sidebars;