From e1079e2f97c84cfc9ff3224a794308cfad06f153 Mon Sep 17 00:00:00 2001 From: Dan Kirkham Date: Tue, 10 Mar 2020 13:41:02 +0000 Subject: [PATCH] Fix readme links (#22134) --- packages/gatsby-cli/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/gatsby-cli/README.md b/packages/gatsby-cli/README.md index a868eb5ca1e00..0ba1182fe77ac 100644 --- a/packages/gatsby-cli/README.md +++ b/packages/gatsby-cli/README.md @@ -9,7 +9,7 @@ The Gatsby CLI (`gatsby-cli`) is packaged as an executable that can be used glob Run `gatsby --help` for full help. -You can also use the `package.json` script variant of these commands, typically exposed _for you_ with most [starters](/docs/starters/). For example, if we want to make the [`gatsby develop`](#develop) command available in our application, we would open up `package.json` and add a script like so: +You can also use the `package.json` script variant of these commands, typically exposed _for you_ with most [starters](https://www.gatsbyjs.org/docs/starters/). For example, if we want to make the [`gatsby develop`](#develop) command available in our application, we would open up `package.json` and add a script like so: ```json:title=package.json { @@ -36,10 +36,10 @@ You can also use the `package.json` script variant of these commands, typically gatsby new [ []] ``` -| Argument | Description | -| ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| site-name | Your Gatsby site name, which is also used to create the project directory. | -| starter-url | A Gatsby starter URL or local file path. Defaults to [gatsby-starter-default](https://github.com/gatsbyjs/gatsby-starter-default); see the [Gatsby starters](/docs/gatsby-starters/) docs for more information. | +| Argument | Description | +| ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| site-name | Your Gatsby site name, which is also used to create the project directory. | +| starter-url | A Gatsby starter URL or local file path. Defaults to [gatsby-starter-default](https://github.com/gatsbyjs/gatsby-starter-default); see the [Gatsby starters](https://www.gatsbyjs.org/docs/gatsby-starters/) docs for more information. | > Note: The `site-name` should only consist of letters and numbers. If you specify a `.`, `./` or a `` in the name, `gatsby new` will throw an error.