diff options
author | 2022-08-15 13:04:45 +0530 | |
---|---|---|
committer | 2022-08-15 15:34:45 +0800 | |
commit | 63758ae35f02af322bcab346507af461533799a1 (patch) | |
tree | c9d0edace54b0394e77346cfc3771ff1e20e9ad8 | |
parent | faa49db39b265373c7b0232b0eabab4350fbf126 (diff) | |
download | astro-63758ae35f02af322bcab346507af461533799a1.tar.gz astro-63758ae35f02af322bcab346507af461533799a1.tar.zst astro-63758ae35f02af322bcab346507af461533799a1.zip |
docs: specify lang for a codeblock (#4314)
Co-authored-by: bluwy <bjornlu.dev@gmail.com>
-rw-r--r-- | packages/integrations/preact/README.md | 2 | ||||
-rw-r--r-- | packages/integrations/turbolinks/README.md | 2 | ||||
-rw-r--r-- | packages/webapi/README.md | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/packages/integrations/preact/README.md b/packages/integrations/preact/README.md index 9d4c1fb05..a0f699556 100644 --- a/packages/integrations/preact/README.md +++ b/packages/integrations/preact/README.md @@ -43,7 +43,7 @@ Because this command is new, it might not properly set things up. If that happen First, install the `@astrojs/preact` package using your package manager. If you're using npm or aren't sure, run this in the terminal: -``` +```sh npm install @astrojs/preact ``` diff --git a/packages/integrations/turbolinks/README.md b/packages/integrations/turbolinks/README.md index 1c57212d2..583b60698 100644 --- a/packages/integrations/turbolinks/README.md +++ b/packages/integrations/turbolinks/README.md @@ -39,7 +39,7 @@ If you run into any hiccups, [feel free to log an issue on our GitHub](https://g First, install the `@astrojs/turbolinks` integration like so: -``` +```sh npm install @astrojs/turbolinks ``` diff --git a/packages/webapi/README.md b/packages/webapi/README.md index 95f0af375..2b0efb82a 100644 --- a/packages/webapi/README.md +++ b/packages/webapi/README.md @@ -2,7 +2,7 @@ **WebAPI** lets you use Web APIs in Node v12, v14, and v16. -```shell +```sh npm install @astrojs/webapi ``` |