Skip to content

Commit 27e21c9

Browse files
committed
Fixing more pages
1 parent bfa2c36 commit 27e21c9

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

src/content/docs/kv/examples/cache-data-with-workers-kv.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ if (!bodyMatch) return 'No content found';
107107

108108
}
109109

110-
````
110+
```
111111
</TabItem>
112112
<TabItem label="wrangler.jsonc">
113113
```json
@@ -126,7 +126,7 @@ if (!bodyMatch) return 'No content found';
126126
}
127127
]
128128
}
129-
````
129+
```
130130

131131
</TabItem>
132132
</Tabs>

src/content/docs/kv/examples/distributed-configuration-with-workers-kv.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ syncPreviewStatus()
8787
.catch(console.error)
8888
.finally(() => process.exit(0));
8989

90-
````
90+
```
9191
</TabItem>
9292
<TabItem label=".env">
9393
```md title=".env"
@@ -96,7 +96,7 @@ CLOUDFLARE_EMAIL = <CLOUDFLARE_EMAIL_HERE>
9696
CLOUDFLARE_API_KEY = <CLOUDFLARE_API_KEY_HERE>
9797
CLOUDFLARE_ACCOUNT_ID = <CLOUDFLARE_ACCOUNT_ID_HERE>
9898
CLOUDFLARE_WORKERS_KV_NAMESPACE_ID = <CLOUDFLARE_WORKERS_KV_NAMESPACE_ID_HERE>
99-
````
99+
```
100100

101101
</TabItem>
102102
<TabItem label="db.sql">
@@ -115,7 +115,7 @@ INSERT INTO users (username, email, preview_features_enabled) VALUES
115115
('bob', '[email protected]', false),
116116
('charlie', '[email protected]', true);
117117

118-
````
118+
```
119119
</TabItem>
120120
</Tabs>
121121

@@ -216,7 +216,7 @@ export default {
216216
}
217217
]
218218
}
219-
````
219+
```
220220
221221
</TabItem>
222222
</Tabs>

src/content/docs/kv/examples/routing-with-workers-kv.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export default {
111111
}
112112
} satisfies ExportedHandler<Env>;
113113

114-
````
114+
```
115115
</TabItem>
116116
<TabItem label="wrangler.jsonc">
117117
```json
@@ -130,7 +130,7 @@ export default {
130130
}
131131
]
132132
}
133-
````
133+
```
134134

135135
</TabItem>
136136
</Tabs>

src/content/docs/kv/examples/workers-kv-to-serve-assets.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { Render, PackageManagers, TabItem, Tabs } from "~/components";
1313
By storing static assets in Workers KV, you can retrieve these assets globally with low-latency and high throughput. You can then serve these assets directly, or use them to dynamically generate responses. This can be useful when serving files such as custom scripts, small images that fit within [KV limits](/kv/platform/limits/), or when generating dynamic HTML responses from static assets such as translations.
1414

1515
:::note[Note]
16-
If you need to **host a front-end or full-stack web application**, **use [Cloudflare Workers static assets](/workers/static-assets/) or [Cloudflare Pages](/pages/)**, which provide a purpose-built deployment experience for web applications and their assets.
16+
If you need to **host a front-end or full-stack web application**, **use [Cloudflare Workers static assets](/workers/static-assets/) or [Cloudflare Pages](/pages/)**, which provide a purpose-built deployment experience for web applications and their assets.
1717

1818
[Workers KV](/kv/) provides a more flexible API which allows you to access, edit, and store assets directly from your [Worker](/workers/) without requiring deployments. This can be helpful for serving custom assets that are not included in your deployment bundle, such as uploaded media assets or custom scripts and files generated at runtime.
1919
:::
@@ -96,7 +96,7 @@ export default {
9696

9797
} satisfies ExportedHandler<Env>;
9898

99-
````
99+
```
100100
</TabItem>
101101
<TabItem label="wrangler.jsonc">
102102
```json
@@ -115,7 +115,7 @@ export default {
115115
}
116116
]
117117
}
118-
````
118+
```
119119

120120
</TabItem>
121121
</Tabs>
@@ -272,7 +272,7 @@ export default {
272272
},
273273
} satisfies ExportedHandler<Env>;
274274

275-
````
275+
```
276276
</TabItem>
277277
<TabItem label="wrangler.jsonc">
278278
```json
@@ -291,7 +291,7 @@ export default {
291291
}
292292
]
293293
}
294-
````
294+
```
295295

296296
</TabItem>
297297
</Tabs>

0 commit comments

Comments
 (0)