Skip to content

Commit 93562a5

Browse files
committed
fixing too many back ticks
1 parent 82a04df commit 93562a5

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

src/content/docs/workers-vpc/configuration/vpc-services.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ binding = "PRIVATE_API"
101101
service_id = "5634563546"
102102
remote = true
103103

104-
````
104+
```
105105
</WranglerConfig>
106106

107107
You can have multiple service bindings:
@@ -123,7 +123,7 @@ binding = "INTERNAL_CACHE"
123123
service_id = "3412345678"
124124
remote = true
125125

126-
````
126+
```
127127

128128
</WranglerConfig>
129129

src/content/docs/workers-vpc/examples/private-api.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ compatibility_date = "2024-01-01"
6666
binding = "INTERNAL_API"
6767
service_id = "<YOUR_SERVICE_ID>"
6868

69-
````
69+
```
7070
</WranglerConfig>
7171

7272
## 4. Implement the Worker
@@ -87,7 +87,7 @@ export default {
8787
}
8888
},
8989
};
90-
````
90+
```
9191

9292
This guide demonstrates how you could create a simple proxy in your Workers. However, you could use VPC Services to fetch APIs directly and manipulate the responses to enable you to build more full-stack and backend functionality on Workers.
9393

src/content/docs/workers-vpc/examples/private-s3-bucket.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ compatibility_date = "2024-01-01"
105105
binding = "S3_STORAGE"
106106
service_id = "<YOUR_SERVICE_ID>"
107107

108-
````
108+
```
109109
</WranglerConfig>
110110

111111
## 5. Implement the Worker
@@ -126,7 +126,7 @@ export default {
126126
}
127127
},
128128
};
129-
````
129+
```
130130

131131
This guide demonstrates how you could access private object storage from your Workers. You could use Workers VPC Services to fetch files directly and manipulate the responses to enable you to build more full-stack and backend functionality on Workers.
132132

src/content/docs/workers-vpc/get-started.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ compatibility_date = "2024-01-01"
162162
binding = "VPC_SERVICE"
163163
service_id = "<YOUR_SERVICE_ID>"
164164

165-
````
165+
```
166166

167167
</WranglerConfig>
168168

@@ -195,7 +195,7 @@ export default {
195195
},
196196
} satisfies ExportedHandler<Env>;
197197

198-
````
198+
```
199199

200200
## 6. Test locally
201201

src/content/docs/workers-vpc/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default {
5656

5757
};
5858

59-
````
59+
```
6060

6161
</TabItem>
6262
<TabItem label="wrangler.jsonc">
@@ -74,7 +74,7 @@ export default {
7474
}
7575
]
7676
}
77-
````
77+
```
7878

7979
</TabItem>
8080
</Tabs>

0 commit comments

Comments
 (0)