Skip to content

Commit bf074fc

Browse files
fix(docs): update links to use absolute URLs in documentation
Signed-off-by: Nikola Hristov <Nikola@PlayForm.Cloud>
1 parent 129b9ce commit bf074fc

32 files changed

Lines changed: 128 additions & 128 deletions

Source/Content/doc/air.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Confirmed source areas include:
5959

6060
## See Also
6161

62-
- [Architecture Overview](/Doc/architecture)
63-
- [Mountain](/Doc/mountain)
64-
- [Local-First Protocol](/Doc/local-first-protocol)
62+
- [Architecture Overview](https://Editor.Land/Doc/architecture)
63+
- [Mountain](https://Editor.Land/Doc/mountain)
64+
- [Local-First Protocol](https://Editor.Land/Doc/local-first-protocol)
6565
- [Source Code](https://github.com/CodeEditorLand/Air)

Source/Content/doc/api-reference.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const FontSize = Config.get<number>("FontSize", 14);
7979
Configuration keys are declared in `contributes.configuration` in your extension
8080
manifest. Land validates configuration values against the JSON Schema you
8181
provide. The specific user settings file path has not been independently
82-
confirmed - see [Configuration](/Doc/configuration) for details.
82+
confirmed - see [Configuration](https://Editor.Land/Doc/configuration) for details.
8383

8484
---
8585

@@ -159,22 +159,22 @@ are unavailable.
159159

160160
| Crate | Description | Element |
161161
| --------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------- |
162-
| `Mountain` | Tauri native kernel | [Mountain](/Doc/mountain) |
163-
| `Echo` | Work-stealing task scheduler | [Echo](/Doc/echo) |
164-
| `Common` | Shared IPC event type definitions | [Architecture](/Doc/architecture) |
165-
| `CommonLibrary` | Shared utility functions | [Architecture](/Doc/architecture) |
166-
| `Air` | Background update daemon | [Air](/Doc/air) |
167-
| `AirLibrary` | Air shared library | [Air](/Doc/air) |
168-
| `Download` | Binary download logic | [Air](/Doc/air) |
169-
| `SideCar` | Pre-built Node.js binaries | [Architecture](/Doc/architecture) |
170-
| `Maintain` | Build orchestrator | [Contributing](/Doc/contributing) |
171-
| `Grove` | WASM extension host - WASMtime host, gRPC protocol, API surface, and transport layer implemented; primary build integration in progress | [Grove](/Doc/grove) |
162+
| `Mountain` | Tauri native kernel | [Mountain](https://Editor.Land/Doc/mountain) |
163+
| `Echo` | Work-stealing task scheduler | [Echo](https://Editor.Land/Doc/echo) |
164+
| `Common` | Shared IPC event type definitions | [Architecture](https://Editor.Land/Doc/architecture) |
165+
| `CommonLibrary` | Shared utility functions | [Architecture](https://Editor.Land/Doc/architecture) |
166+
| `Air` | Background update daemon | [Air](https://Editor.Land/Doc/air) |
167+
| `AirLibrary` | Air shared library | [Air](https://Editor.Land/Doc/air) |
168+
| `Download` | Binary download logic | [Air](https://Editor.Land/Doc/air) |
169+
| `SideCar` | Pre-built Node.js binaries | [Architecture](https://Editor.Land/Doc/architecture) |
170+
| `Maintain` | Build orchestrator | [Contributing](https://Editor.Land/Doc/contributing) |
171+
| `Grove` | WASM extension host - WASMtime host, gRPC protocol, API surface, and transport layer implemented; primary build integration in progress | [Grove](https://Editor.Land/Doc/grove) |
172172

173173
---
174174

175175
## See Also
176176

177-
- [Cocoon: Extension Host](/Doc/cocoon)
178-
- [Extension Development](/Doc/extension-development)
179-
- [Architecture Overview](/Doc/architecture)
177+
- [Cocoon: Extension Host](https://Editor.Land/Doc/cocoon)
178+
- [Extension Development](https://Editor.Land/Doc/extension-development)
179+
- [Architecture Overview](https://Editor.Land/Doc/architecture)
180180
- [VS Code API Documentation](https://code.visualstudio.com/api/references/vscode-api)

Source/Content/doc/architecture.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -93,20 +93,20 @@ matrix.
9393

9494
| Element | Role | Source status |
9595
| ----------------------------- | ---------------------------------------------------------------------- | --------------------------------------- |
96-
| [**Mountain**](/Doc/mountain) | Rust + Tauri desktop shell, native services, IPC broker, Cocoon bridge | Primary desktop path |
97-
| [**Cocoon**](/Doc/cocoon) | Node.js extension host for unmodified VS Code extension code | Primary extension path |
98-
| [**Sky**](/Doc/sky) | Astro workbench routes and WebView bridge | UI source present |
99-
| [**Wind**](/Doc/wind) | Effect-TS workbench service layer | UI service source present |
100-
| [**Vine**](/Doc/vine) | Protocol contracts and generated IPC stubs | Active protocol layer |
101-
| [**Air**](/Doc/air) | Background services for updates, downloads, auth, indexing, and health | Source present, profile-dependent |
102-
| [**Echo**](/Doc/echo) | Rust scheduler primitives for bounded background work | Source present |
103-
| [**Mist**](/Doc/mist) | Local DNS, resolver, WebSocket, and secure service-boundary code | Source present, integration in progress |
104-
| [**Grove**](/Doc/grove) | Wasmtime-backed WebAssembly host path | Source present, integration in progress |
105-
| [**Rest**](/Doc/rest) | OXC-based TypeScript transform work | Source present |
106-
| [**Output**](/Doc/output) | Plugin-routed output and VS Code platform transforms | Build pipeline source present |
107-
| [**Common**](/Doc/common) | Shared Rust and TypeScript contracts | Shared source present |
108-
| [**SideCar**](/Doc/sidecar) | Host-specific sidecar binary packaging | Source present |
109-
| [**Maintain**](/Doc/maintain) | Build and maintenance scripts | Source present |
96+
| [**Mountain**](https://Editor.Land/Doc/mountain) | Rust + Tauri desktop shell, native services, IPC broker, Cocoon bridge | Primary desktop path |
97+
| [**Cocoon**](https://Editor.Land/Doc/cocoon) | Node.js extension host for unmodified VS Code extension code | Primary extension path |
98+
| [**Sky**](https://Editor.Land/Doc/sky) | Astro workbench routes and WebView bridge | UI source present |
99+
| [**Wind**](https://Editor.Land/Doc/wind) | Effect-TS workbench service layer | UI service source present |
100+
| [**Vine**](https://Editor.Land/Doc/vine) | Protocol contracts and generated IPC stubs | Active protocol layer |
101+
| [**Air**](https://Editor.Land/Doc/air) | Background services for updates, downloads, auth, indexing, and health | Source present, profile-dependent |
102+
| [**Echo**](https://Editor.Land/Doc/echo) | Rust scheduler primitives for bounded background work | Source present |
103+
| [**Mist**](https://Editor.Land/Doc/mist) | Local DNS, resolver, WebSocket, and secure service-boundary code | Source present, integration in progress |
104+
| [**Grove**](https://Editor.Land/Doc/grove) | Wasmtime-backed WebAssembly host path | Source present, integration in progress |
105+
| [**Rest**](https://Editor.Land/Doc/rest) | OXC-based TypeScript transform work | Source present |
106+
| [**Output**](https://Editor.Land/Doc/output) | Plugin-routed output and VS Code platform transforms | Build pipeline source present |
107+
| [**Common**](https://Editor.Land/Doc/common) | Shared Rust and TypeScript contracts | Shared source present |
108+
| [**SideCar**](https://Editor.Land/Doc/sidecar) | Host-specific sidecar binary packaging | Source present |
109+
| [**Maintain**](https://Editor.Land/Doc/maintain) | Build and maintenance scripts | Source present |
110110
| **Worker** | Browser-worker support for web shell concerns | Source present, release scope varies |
111111

112112
---

Source/Content/doc/cocoon.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ to tests or a validation matrix.
8787

8888
## See Also
8989

90-
- [Architecture Overview](/Doc/architecture)
91-
- [Mountain](/Doc/mountain)
92-
- [Vine](/Doc/vine)
93-
- [VS Code Compatibility](/Blog/VSCodeCompatibility)
90+
- [Architecture Overview](https://Editor.Land/Doc/architecture)
91+
- [Mountain](https://Editor.Land/Doc/mountain)
92+
- [Vine](https://Editor.Land/Doc/vine)
93+
- [VS Code Compatibility](https://Editor.Land/Blog/VSCodeCompatibility)

Source/Content/doc/common.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ qualified to a specific trait or test harness.
4848

4949
## See Also
5050

51-
- [Architecture Overview](/Doc/architecture)
52-
- [Mountain](/Doc/mountain)
51+
- [Architecture Overview](https://Editor.Land/Doc/architecture)
52+
- [Mountain](https://Editor.Land/Doc/mountain)
5353
- [Source Code](https://github.com/CodeEditorLand/Common)

Source/Content/doc/configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,6 @@ This syntax is the same as VS Code's language-specific settings.
137137

138138
## See Also
139139

140-
- [Getting Started](/Doc/getting-started)
141-
- [Installation](/Doc/installation)
142-
- [Wind: Service Layer](/Doc/wind)
140+
- [Getting Started](https://Editor.Land/Doc/getting-started)
141+
- [Installation](https://Editor.Land/Doc/installation)
142+
- [Wind: Service Layer](https://Editor.Land/Doc/wind)

Source/Content/doc/contributing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,6 @@ operated by [PlayForm](https://playform.cloud) (Sofia, Bulgaria) under the
9999
100100
## See Also
101101
102-
- [Getting Started](/Doc/getting-started)
103-
- [Installation](/Doc/installation)
104-
- [Architecture Overview](/Doc/architecture)
102+
- [Getting Started](https://Editor.Land/Doc/getting-started)
103+
- [Installation](https://Editor.Land/Doc/installation)
104+
- [Architecture Overview](https://Editor.Land/Doc/architecture)

Source/Content/doc/echo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ holding file handles or sockets after shutdown.
100100

101101
## See Also
102102

103-
- [Architecture Overview](/Doc/architecture)
104-
- [Mountain: Native Kernel](/Doc/mountain)
103+
- [Architecture Overview](https://Editor.Land/Doc/architecture)
104+
- [Mountain: Native Kernel](https://Editor.Land/Doc/mountain)
105105
- [Source Code](https://github.com/CodeEditorLand/Echo)

Source/Content/doc/extension-development.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,12 +152,12 @@ features silently no-op at runtime:
152152
- `vscode.notebook.*` - notebook documents and editors
153153
- `vscode.tests.*` - test explorer and runner
154154
155-
See [API Reference](/Doc/api-reference) for the full coverage table.
155+
See [API Reference](https://Editor.Land/Doc/api-reference) for the full coverage table.
156156
157157
---
158158
159159
## See Also
160160
161-
- [API Reference](/Doc/api-reference)
162-
- [Cocoon: Extension Host](/Doc/cocoon)
163-
- [Contributing](/Doc/contributing)
161+
- [API Reference](https://Editor.Land/Doc/api-reference)
162+
- [Cocoon: Extension Host](https://Editor.Land/Doc/cocoon)
163+
- [Contributing](https://Editor.Land/Doc/contributing)

Source/Content/doc/getting-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Output panel for activation errors.
8888

8989
## See Also
9090

91-
- [Installation](/Doc/installation)
92-
- [Architecture Overview](/Doc/architecture)
93-
- [Cocoon: Extension Host](/Doc/cocoon)
94-
- [Mountain: Native Kernel](/Doc/mountain)
91+
- [Installation](https://Editor.Land/Doc/installation)
92+
- [Architecture Overview](https://Editor.Land/Doc/architecture)
93+
- [Cocoon: Extension Host](https://Editor.Land/Doc/cocoon)
94+
- [Mountain: Native Kernel](https://Editor.Land/Doc/mountain)

0 commit comments

Comments
 (0)