diff --git a/frontend/docs/faq.md b/frontend/docs/faq.md
index a19138b58..d3447a492 100644
--- a/frontend/docs/faq.md
+++ b/frontend/docs/faq.md
@@ -100,8 +100,8 @@ us at security@jsr.io.
 
 ## How do I report a bug in JSR?
 
-> During the open beta, please email us at help@jsr.io, or chat in the `#jsr`
-> channel on the Deno Discord (https://discord.gg/deno).
+> During the open beta, please email us at help@jsr.io, or chat in the
+> [JSR Discord](https://discord.gg/hMqvhAn9xG).
 
 Please open an issue on the JSR GitHub repository at
 [jsr-io/jsr](https://github.com/jsr-io/jsr).
diff --git a/frontend/docs/publishing-packages.md b/frontend/docs/publishing-packages.md
index 44851c854..0b8078f52 100644
--- a/frontend/docs/publishing-packages.md
+++ b/frontend/docs/publishing-packages.md
@@ -260,9 +260,9 @@ registry.
 
 ```shell
 # deno
-$ deno publish --dry-run
+deno publish --dry-run
 # npm
-$ npx jsr publish --dry-run
+npx jsr publish --dry-run
 # yarn
 yarn dlx jsr publish --dry-run
 # pnpm
@@ -282,9 +282,9 @@ Enter the root directory of your package (containing the `jsr.json` /
 
 ```shell
 # deno
-$ deno publish
+deno publish
 # npm
-$ npx jsr publish
+npx jsr publish
 # yarn
 yarn dlx jsr publish
 # pnpm
@@ -433,7 +433,7 @@ because you have `"exports"` pointing to it (or a subdirectory of it). In this
 case, you can un-ignore the `dist/` directory by using a negation in the
 `exclude` field in your `jsr.json` / `deno.json` file.
 
-```jsonc
+```json
 // jsr.json
 {
   "name": "@luca/greet",
diff --git a/frontend/docs/why.md b/frontend/docs/why.md
index de38d27b3..fef5b47d1 100644
--- a/frontend/docs/why.md
+++ b/frontend/docs/why.md
@@ -112,7 +112,6 @@ resource-constrained environments.
 
 Your feedback will be critical to the success of JSR. If you have any ideas or
 feedback on how JSR could work better for your use case, please let us know on
-[Discord](https://discord.gg/deno) in either the `#jsr` or `#jsr-feedback`
-channels.
+[Discord](https://discord.gg/hMqvhAn9xG).
 
 Ready to try JSR yourself? [Get started now](/docs/introduction).
diff --git a/frontend/docs/with/cloudflare-workers.md b/frontend/docs/with/cloudflare-workers.md
index 6c015fd61..126a5764a 100644
--- a/frontend/docs/with/cloudflare-workers.md
+++ b/frontend/docs/with/cloudflare-workers.md
@@ -46,7 +46,7 @@ Running `wrangler dev` to start the local development server will run your
 Cloudflare Worker. You can then visit `http://localhost:8787` to see the result.
 
 ```shell
-$ wrangler dev
+wrangler dev
 ```
 
 [Learn more about using packages.](/docs/using-packages)
diff --git a/frontend/docs/with/deno.md b/frontend/docs/with/deno.md
index afde54a24..e10d0ef5c 100644
--- a/frontend/docs/with/deno.md
+++ b/frontend/docs/with/deno.md
@@ -91,5 +91,5 @@ package. This command will display a list of all dependencies, including their
 version constraints.
 
 ```shell
-$ deno info jsr:@std/fs
+deno info jsr:@std/fs
 ```
diff --git a/frontend/docs/with/nextjs.md b/frontend/docs/with/nextjs.md
index 26f71b86f..1ec83541b 100644
--- a/frontend/docs/with/nextjs.md
+++ b/frontend/docs/with/nextjs.md
@@ -44,7 +44,7 @@ application at `http://localhost:3000/`. You can then visit
 `http://localhost:3000/` to see it.
 
 ```shell
-$ next dev
+next dev
 ```
 
 [Learn more about using packages.](/docs/using-packages)
diff --git a/frontend/docs/with/node.md b/frontend/docs/with/node.md
index 98705fba6..7f5baa9c6 100644
--- a/frontend/docs/with/node.md
+++ b/frontend/docs/with/node.md
@@ -34,7 +34,7 @@ console.log(red("Hello, world!"));
 Running this code will print a red "Hello, world!" text to your terminal.
 
 ```shell
-$ node main.js
+node main.js
 ```
 
 [Learn more about using packages.](/docs/using-packages)
diff --git a/frontend/docs/with/vite.md b/frontend/docs/with/vite.md
index 257b1036c..b7d1b033d 100644
--- a/frontend/docs/with/vite.md
+++ b/frontend/docs/with/vite.md
@@ -44,7 +44,7 @@ at `http://localhost:5173`. You can then visit `http://localhost:5173` to see
 it.
 
 ```shell
-$ vite
+vite
 ```
 
 [Learn more about using packages.](/docs/using-packages)