You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed GCP getting started review project page (#16348)
* Fixed GCP getting started review project page
The tabs in front of the hyphens were causing the syntax highlightint to
be applied
* Applying @claude's suggestions
Copy file name to clipboardExpand all lines: content/docs/iac/get-started/gcp/review-project.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title_tag: Review the New Project | Google Cloud
3
-
meta_desc: This page provides an overview on how to a review a new Google Cloud project.
3
+
meta_desc: This page provides an overview on how to review a new Google Cloud project.
4
4
title: Review project
5
5
h1: "Pulumi & Google Cloud: Review project"
6
6
weight: 4
@@ -20,34 +20,36 @@ Let's review some of the generated project files:
20
20
21
21
{{% choosable language "javascript,typescript,python,go,csharp,java" %}}
22
22
23
-
- `Pulumi.yaml` defines the [project](/docs/concepts/projects/).
23
+
<!-- Please note that all the bullet points (like the line below) MUST NOT have any tabs before the hyphen, otherwise Hugo will think it's code that needs syntax highlighting applied. -->
24
+
25
+
-`Pulumi.yaml` defines the [project](/docs/concepts/projects/).
24
26
25
27
{{% /choosable %}}
26
28
27
29
{{% choosable language yaml %}}
28
30
29
-
- `Pulumi.yaml` defines both the [project](/docs/concepts/projects/) and the program that manages your stack resources.
31
+
-`Pulumi.yaml` defines both the [project](/docs/concepts/projects/) and the program that manages your stack resources.
30
32
31
33
{{% /choosable %}}
32
34
33
-
- `Pulumi.dev.yaml` contains [configuration](/docs/concepts/config/) values for the [stack](/docs/concepts/stack/) you initialized.
35
+
-`Pulumi.dev.yaml` contains [configuration](/docs/concepts/config/) values for the [stack](/docs/concepts/stack/) you initialized.
34
36
35
37
{{% choosable language java %}}
36
38
37
-
- `src/main/java/myproject` defines the project's Java package root.
39
+
-`src/main/java/myproject` defines the project's Java package root.
38
40
39
41
{{% /choosable %}}
40
42
41
43
{{% choosable language python %}}
42
44
43
-
- `__main__.py` is the Pulumi program that defines your stack resources.
45
+
-`__main__.py` is the Pulumi program that defines your stack resources.
44
46
45
47
{{% /choosable %}}
46
48
47
49
{{% choosable language "javascript,typescript,go,csharp,java" %}}
48
50
49
-
<!-- The wrapping spans are infortunately necessary here; without them, the renderer gets confused and generates invalid markup. -->
50
-
- <span>{{< langfile >}}</span> is the Pulumi program that defines your stack resources.
51
+
<!-- The wrapping spans are unfortunately necessary here; without them, the renderer gets confused and generates invalid markup. -->
52
+
- <span>{{< langfile >}}</span> is the Pulumi program that defines your stack resources.
0 commit comments