Skip to content

Commit a6268c7

Browse files
committed
Don't markup-render choosables
1 parent 02a9003 commit a6268c7

File tree

131 files changed

+2678
-2678
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+2678
-2678
lines changed

components/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -167,15 +167,15 @@ Similarly:
167167

168168
```
169169
{{< chooser cloud "aws,azure,gcp" >}}
170-
{{% choosable cloud aws %}}
170+
{{< choosable cloud aws >}}
171171
Some AWS stuff.
172-
{{% /choosable %}}
173-
{{% choosable cloud azure %}}
172+
{{< /choosable >}}
173+
{{< choosable cloud azure >}}
174174
Some Azure stuff.
175-
{{% /choosable %}}
176-
{{% choosable cloud gcp %}}
175+
{{< /choosable >}}
176+
{{< choosable cloud gcp >}}
177177
Some GCP stuff.
178-
{{% /choosable %}}
178+
{{< /choosable >}}
179179
{{< /chooser >}}
180180
```
181181

content/blog/announcing-kustomize-support/index.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Let's see how to deploy a Kustomization from a local directory.
2626

2727
{{< chooser language "typescript,python,csharp,go" >}}
2828

29-
{{% choosable language typescript %}}
29+
{{< choosable language typescript >}}
3030

3131
```typescript
3232
import * as k8s from "@pulumi/kubernetes";
@@ -36,9 +36,9 @@ new k8s.kustomize.Directory("helloWorldLocal", {
3636
});
3737
```
3838

39-
{{% /choosable %}}
39+
{{< /choosable >}}
4040

41-
{{% choosable language python %}}
41+
{{< choosable language python >}}
4242

4343
```python
4444
import pulumi_kubernetes as k8s
@@ -47,9 +47,9 @@ k8s.kustomize.Directory("helloWorldLocal",
4747
directory="helloWorld")
4848
```
4949

50-
{{% /choosable %}}
50+
{{< /choosable >}}
5151

52-
{{% choosable language csharp %}}
52+
{{< choosable language csharp >}}
5353

5454
```csharp
5555
using System;
@@ -75,9 +75,9 @@ class Program
7575
}
7676
```
7777

78-
{{% /choosable %}}
78+
{{< /choosable >}}
7979

80-
{{% choosable language go %}}
80+
{{< choosable language go >}}
8181

8282
```go
8383
import (
@@ -101,7 +101,7 @@ func main() {
101101
}
102102
```
103103

104-
{{% /choosable %}}
104+
{{< /choosable >}}
105105

106106
{{< /chooser >}}
107107

@@ -114,7 +114,7 @@ by specifying the path to the directory.
114114

115115
{{< chooser language "typescript,python,csharp,go" >}}
116116

117-
{{% choosable language typescript %}}
117+
{{< choosable language typescript >}}
118118

119119
```typescript
120120
import * as k8s from "@pulumi/kubernetes";
@@ -124,9 +124,9 @@ new k8s.kustomize.Directory("helloWorldRemote", {
124124
});
125125
```
126126

127-
{{% /choosable %}}
127+
{{< /choosable >}}
128128

129-
{{% choosable language python %}}
129+
{{< choosable language python >}}
130130

131131
```python
132132
import pulumi_kubernetes as k8s
@@ -135,9 +135,9 @@ k8s.kustomize.Directory("helloWorldRemote",
135135
directory="https://github.com/kubernetes-sigs/kustomize/tree/v3.3.1/examples/helloWorld")
136136
```
137137

138-
{{% /choosable %}}
138+
{{< /choosable >}}
139139

140-
{{% choosable language csharp %}}
140+
{{< choosable language csharp >}}
141141

142142
```csharp
143143
using System;
@@ -163,9 +163,9 @@ class Program
163163
}
164164
```
165165

166-
{{% /choosable %}}
166+
{{< /choosable >}}
167167

168-
{{% choosable language go %}}
168+
{{< choosable language go >}}
169169

170170
```go
171171
import (
@@ -189,7 +189,7 @@ func main() {
189189
}
190190
```
191191

192-
{{% /choosable %}}
192+
{{< /choosable >}}
193193

194194
{{< /chooser >}}
195195

@@ -208,7 +208,7 @@ an existing configuration.
208208

209209
{{< chooser language "typescript,python,csharp,go" >}}
210210

211-
{{% choosable language typescript %}}
211+
{{< choosable language typescript >}}
212212

213213
```typescript
214214
import * as k8s from "@pulumi/kubernetes";
@@ -225,9 +225,9 @@ new k8s.kustomize.Directory("helloWorldRemote", {
225225
});
226226
```
227227

228-
{{% /choosable %}}
228+
{{< /choosable >}}
229229

230-
{{% choosable language python %}}
230+
{{< choosable language python >}}
231231

232232
```python
233233
import pulumi_kubernetes as k8s
@@ -241,9 +241,9 @@ k8s.kustomize.Directory("helloWorldRemote",
241241
transformations=[change_service_type])
242242
```
243243

244-
{{% /choosable %}}
244+
{{< /choosable >}}
245245

246-
{{% choosable language csharp %}}
246+
{{< choosable language csharp >}}
247247

248248
```csharp
249249
using System;
@@ -288,9 +288,9 @@ class Program
288288
}
289289
```
290290

291-
{{% /choosable %}}
291+
{{< /choosable >}}
292292

293-
{{% choosable language go %}}
293+
{{< choosable language go >}}
294294

295295
```go
296296
import (
@@ -322,7 +322,7 @@ func main() {
322322
}
323323
```
324324

325-
{{% /choosable %}}
325+
{{< /choosable >}}
326326

327327
{{< /chooser >}}
328328

0 commit comments

Comments
 (0)