Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docs): fix code block language to shell #28895

Merged
merged 1 commit into from
Jan 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchmarks/source-strapi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ Create a .env file from the template:

Update data:

```sh
```shell
yarn date-update
```
4 changes: 2 additions & 2 deletions docs/docs/how-to/styling/using-web-fonts.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ You can add Typekit Web Fonts to your project by using the [gatsby-plugin-web-fo

First, install the Gatsby plugin with npm:

```bash
```shell
npm install --save gatsby-plugin-web-font-loader
```

Or with yarn:

```bash
```shell
yarn add gatsby-plugin-web-font-loader
```

Expand Down
4 changes: 2 additions & 2 deletions packages/gatsby-admin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A visual interface to configure your Gatsby site. Currently alpha testing.

For now, Gatsby Admin is marked as experimental and requires a flag to enable. Add the following flag when using `gatsby develop`:

```sh
```shell
GATSBY_EXPERIMENTAL_ENABLE_ADMIN=true gatsby develop
```

Expand Down Expand Up @@ -98,7 +98,7 @@ The easiest way to work on Admin locally is to develop Admin itself.

To try Admin with one of your sites locally, use the `gatsby-dev-cli` to copy the local versions of `gatsby`, `gatsby-cli`, `gatsby-recipes`, `gatsby-core-utils` and `gatsby-admin` into your project:

```sh
```shell
# Make sure to build the latest local versions of all packages
~/gatsby
yarn run watch
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-recipes/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ One note, as you’ll be testing changes to the Gatsby CLI — instead of runnin

When debugging the CLI, you may run into errors without stacktraces. In order to work around that, you can use the node inspector:

```sh
```shell
DEBUG=true node --inspect-brk ./node_modules/.bin/gatsby recipes ./test.mdx
```

Expand Down
6 changes: 3 additions & 3 deletions starters/gatsby-starter-mdx-basic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ README also applies here.

1. Create a new Gatsby site using this starter

```sh
```shell
gatsby new my-site https://github.com/gatsbyjs/gatsby-starter-mdx-basic
```

2. Install dependencies

```sh
```shell
npm install
```

3. Run the develop script

```sh
```shell
gatsby develop
```

Expand Down