From 58347968b943b419d6b5cafaef64382dc39a6ac8 Mon Sep 17 00:00:00 2001 From: Joe Heck Date: Thu, 30 Jul 2026 13:30:30 -0700 Subject: [PATCH 1/3] rework the platforms nav collecting & titles --- scripts/navigation.json | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/scripts/navigation.json b/scripts/navigation.json index cdbbe24b..94e0d63f 100644 --- a/scripts/navigation.json +++ b/scripts/navigation.json @@ -29,10 +29,15 @@ { "title": "Platforms", "modules": [ - { "source": "embedded-swift", "path": "/documentation/embeddedswift" }, - { "source": "swift-wasm", "path": "/documentation/wasmguide" }, - { "source": "swift-android", "path": "/documentation/swiftandroid" }, - { "source": "server-guides", "path": "/documentation/serverguides" }, + { "source": "embedded-swift", "path": "/documentation/embeddedswift", "title": "Embedded" }, + { "source": "swift-wasm", "path": "/documentation/wasmguide", "title": "WebAssembly (Wasm)"}, + { "source": "swift-android", "path": "/documentation/swiftandroid", "title": "Android" }, + { "source": "server-guides", "path": "/documentation/serverguides", "title": "Linux" }, + ] + }, + { + "title": "Tutorials", + "modules": [ { "source": "swift-server-todos-tutorial", "path": "/tutorials/getting-started-swift-server" } ] }, From 5d2be775c6eb9ef18bd60475ed85eb5e983e024b Mon Sep 17 00:00:00 2001 From: Joe Heck Date: Thu, 30 Jul 2026 13:41:40 -0700 Subject: [PATCH 2/3] Embedded Swift --- scripts/navigation.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/navigation.json b/scripts/navigation.json index 94e0d63f..e15c946b 100644 --- a/scripts/navigation.json +++ b/scripts/navigation.json @@ -29,7 +29,7 @@ { "title": "Platforms", "modules": [ - { "source": "embedded-swift", "path": "/documentation/embeddedswift", "title": "Embedded" }, + { "source": "embedded-swift", "path": "/documentation/embeddedswift", "title": "Embedded Swift" }, { "source": "swift-wasm", "path": "/documentation/wasmguide", "title": "WebAssembly (Wasm)"}, { "source": "swift-android", "path": "/documentation/swiftandroid", "title": "Android" }, { "source": "server-guides", "path": "/documentation/serverguides", "title": "Linux" }, From df0634545b0da45005b6b770573d2e99cc6aedb5 Mon Sep 17 00:00:00 2001 From: Joe Heck Date: Thu, 30 Jul 2026 14:06:10 -0700 Subject: [PATCH 3/3] fixing JSON --- scripts/navigation.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/navigation.json b/scripts/navigation.json index e15c946b..4ec857e0 100644 --- a/scripts/navigation.json +++ b/scripts/navigation.json @@ -32,7 +32,7 @@ { "source": "embedded-swift", "path": "/documentation/embeddedswift", "title": "Embedded Swift" }, { "source": "swift-wasm", "path": "/documentation/wasmguide", "title": "WebAssembly (Wasm)"}, { "source": "swift-android", "path": "/documentation/swiftandroid", "title": "Android" }, - { "source": "server-guides", "path": "/documentation/serverguides", "title": "Linux" }, + { "source": "server-guides", "path": "/documentation/serverguides", "title": "Linux" } ] }, {