From dd7bbd520fb263fadaf1b6016ef28dd0f304e36d Mon Sep 17 00:00:00 2001 From: Nick Hehr Date: Wed, 3 Jan 2024 22:19:13 -0500 Subject: [PATCH] docs: update broken links (#158) --- docs/src/content/docs/features/run.md | 2 +- docs/src/content/docs/features/scan.md | 2 +- docs/src/content/docs/features/update.md | 2 +- docs/src/content/docs/guide/00-prepare.md | 2 +- docs/src/content/docs/guide/01-hello-console.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/src/content/docs/features/run.md b/docs/src/content/docs/features/run.md index 8efe8d1..2f64345 100644 --- a/docs/src/content/docs/features/run.md +++ b/docs/src/content/docs/features/run.md @@ -59,7 +59,7 @@ The `--port` flag accepts a path to port for connected device (defaults to: `UPL xs-dev run --port /dev/cu.usbserial-0001 --device esp8266 ``` -_This value can be discovered using the [`scan`](./scan) command._ +_This value can be discovered using the [`scan`](/features/scan) command._ ## Display debugger output in the terminal diff --git a/docs/src/content/docs/features/scan.md b/docs/src/content/docs/features/scan.md index 4f13f77..2c3880e 100644 --- a/docs/src/content/docs/features/scan.md +++ b/docs/src/content/docs/features/scan.md @@ -20,7 +20,7 @@ This will provide info with the port address, device name, and discovered featur /dev/cu.usbserial-DN02N5XK ESP32-D0WDQ6 (revision 0) WiFi, BT, Dual Core, Coding Scheme None ``` -The port can be used with the [`run`](./run) command to specify a device, if multiple are connected: +The port can be used with the [`run`](/features/run) command to specify a device, if multiple are connected: ``` xs-dev run --port /dev/cu.usbserial-0001 --device esp8266 diff --git a/docs/src/content/docs/features/update.md b/docs/src/content/docs/features/update.md index 1bb9434..94adfee 100644 --- a/docs/src/content/docs/features/update.md +++ b/docs/src/content/docs/features/update.md @@ -5,7 +5,7 @@ description: Stay up to date with the latest tooling # SDK & Tooling Updates -Stay up to date with the latest tooling from Moddable and supported device targets. As with the [`setup`](./setup) command, the current dev environment (Mac or Linux) is the default selected target: +Stay up to date with the latest tooling from Moddable and supported device targets. As with the [`setup`](/features/setup) command, the current dev environment (Mac or Linux) is the default selected target: ``` xs-dev update diff --git a/docs/src/content/docs/guide/00-prepare.md b/docs/src/content/docs/guide/00-prepare.md index 9da9693..02db455 100644 --- a/docs/src/content/docs/guide/00-prepare.md +++ b/docs/src/content/docs/guide/00-prepare.md @@ -27,7 +27,7 @@ trace('hello world') A local plain text editor is generally required for creating and editing your JavaScript projects. You can download one of the following free applications with either built-in or third-party support for JavaScript: - [Visual Studio Code](https://code.visualstudio.com/) -- [Neovim](http://www.sublimetext.com/) / [Vim](https://www.vim.org/) +- [Neovim](https://neovim.io) / [Vim](https://www.vim.org/) - [Sublime Text](http://www.sublimetext.com/) These are not the only available editors, so feel free to do your own research and pick what feels right to you! diff --git a/docs/src/content/docs/guide/01-hello-console.md b/docs/src/content/docs/guide/01-hello-console.md index f0755ae..cd3420e 100644 --- a/docs/src/content/docs/guide/01-hello-console.md +++ b/docs/src/content/docs/guide/01-hello-console.md @@ -7,7 +7,7 @@ description: How to set up the basic development environment and run your first ## Install the CLI -`xs-dev` can be installed globally using the [NodeJS package manager of your choice](http://localhost:3000/guide/00-prepare#nodejs--package-manager-optional). +`xs-dev` can be installed globally using the [NodeJS package manager of your choice](/guide/00-prepare#nodejs--package-manager-optional). ``` npm install -g xs-dev