Skip to content

Commit c61646b

Browse files
committed
move syntax lookup to manual sidebar
1 parent a8a4ce8 commit c61646b

6 files changed

+13
-9
lines changed

data/sidebar_manual_v1000.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
"import-export",
3333
"attribute",
3434
"unboxed",
35-
"reserved-keywords"
35+
"reserved-keywords",
36+
"syntax-lookup"
3637
],
3738
"Advanced Features": [
3839
"extensible-variant",
@@ -72,4 +73,4 @@
7273
"project-structure",
7374
"faq"
7475
]
75-
}
76+
}

data/sidebar_manual_v1100.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
"import-export",
3434
"attribute",
3535
"reserved-keywords",
36-
"equality-comparison"
36+
"equality-comparison",
37+
"syntax-lookup"
3738
],
3839
"Advanced Features": [
3940
"extensible-variant",

data/sidebar_manual_v1200.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@
5656
"import-export",
5757
"attribute",
5858
"reserved-keywords",
59-
"equality-comparison"
59+
"equality-comparison",
60+
"syntax-lookup"
6061
],
6162
"Build System": [
6263
"build-overview",

data/sidebar_manual_v800.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"promise",
2929
"module",
3030
"import-export",
31-
"reserved-keywords"
31+
"reserved-keywords",
32+
"syntax-lookup"
3233
],
3334
"JavaScript Interop": [
3435
"embed-raw-javascript",
@@ -59,4 +60,4 @@
5960
"project-structure",
6061
"faq"
6162
]
62-
}
63+
}

data/sidebar_manual_v900.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
"import-export",
3232
"attribute",
3333
"unboxed",
34-
"reserved-keywords"
34+
"reserved-keywords",
35+
"syntax-lookup"
3536
],
3637
"JavaScript Interop": [
3738
"interop-cheatsheet",
@@ -66,4 +67,4 @@
6667
"project-structure",
6768
"faq"
6869
]
69-
}
70+
}

src/layouts/ApiOverviewLayout.res

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ let makeCategories: string => array<Sidebar.Category.t> = version => [
66
items: [
77
{name: "Overview", href: `/docs/manual/${version}/api`},
88
{name: "Core", href: `/docs/manual/${version}/api/core`},
9-
{name: "Syntax Lookup", href: "/syntax-lookup"},
109
],
1110
},
1211
{

0 commit comments

Comments
 (0)