Skip to content

Commit 31058cb

Browse files
committed
move syntax pages
1 parent 23eaffe commit 31058cb

File tree

100 files changed

+4
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+4
-2
lines changed

app/routes.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ let $$default = Belt_Array.concatMany([
2828
Routes.route("community/overview", "./routes/CommunityRoute.mjs", {
2929
id: "overview"
3030
}),
31-
Routes.route("syntax-lookup", "./routes/SyntaxLookupRoute.mjs"),
31+
Routes.route("syntax-lookup", "./routes/SyntaxLookupRoute.mjs", {
32+
id: "syntax-lookup"
33+
}),
3234
Routes.route("blog", "./routes/BlogRoute.mjs"),
3335
Routes.route("docs/manual/api/stdlib", "./routes/ApiRoute.mjs", {
3436
id: "api-stdlib"

app/routes.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ let default = [
2121
route("try", "./routes/TryRoute.mjs"),
2222
route("community", "./routes/CommunityRoute.mjs"),
2323
route("community/overview", "./routes/CommunityRoute.mjs", ~options={id: "overview"}),
24-
route("syntax-lookup", "./routes/SyntaxLookupRoute.mjs"),
24+
route("syntax-lookup", "./routes/SyntaxLookupRoute.mjs", ~options={id: "syntax-lookup"}),
2525
route("blog", "./routes/BlogRoute.mjs"),
2626
// TODO RR7 get the api index to work with the same template
2727
// route("docs/manual/api", "./routes/ApiRoute.mjs", ~options={id: "api-index"}),

0 commit comments

Comments
 (0)