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
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,8 @@ The source template and generated output are provided below.
41
41
-[Azure template][source-template]
42
42
-[Output markdown][output-template]
43
43
44
+
For frequently asked questions, see the [FAQ].
45
+
44
46
### Annotate templates file
45
47
46
48
In its simplest structure, an Azure template has the following elements:
@@ -120,7 +122,8 @@ PSDocs supports the following metadata:
120
122
Field | Scope | Type | Description
121
123
----- | ----- | ---- | -----------
122
124
`name` | Template | `string` | Used for markdown page title.
123
-
`description` | Template | `string` | Used as the top description for the markdown page.
125
+
`summary` | Template | `string` | Used as a short description for the markdown page.
126
+
`description` | Template | `string` | Used as a detailed description for the markdown page.
124
127
`description` | Parameter | `string` | Used as the description for the parameter.
125
128
`example` | Parameter | `string`, `boolean`, `object`, or `array` | An example use of the parameter. The example is included in the JSON snippet. If an example is not included the default value is used instead.
126
129
`ignore` | Parameter | `boolean` | When `true` the parameter is not included in the JSON snippet.
@@ -333,3 +336,4 @@ This project is [licensed under the MIT License](LICENSE).
Copy file name to clipboardExpand all lines: templates/storage/v1/template.json
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,8 @@
3
3
"contentVersion": "1.0.0.0",
4
4
"metadata": {
5
5
"name": "Storage Account",
6
-
"description": "Create or update a Storage Account."
6
+
"summary": "Create or update a Storage Account.",
7
+
"description": "This template deploys a Storage Account including blob containers and files shares. Encryption in transit it enabled using a minimum of TLS 1.2."
$actualContent| Should -BeLike '*!`[Azure Public Test Date`](https://azurequickstartsservice.blob.core.windows.net/badges/template-test/PublicLastTestDate.svg)*';
41
+
$actualContent| Should -BeLike "`# Storage Account*";
42
+
$actualContent| Should -BeLike "*Create an empty Storage Account.*";
43
+
$actualContent| Should -BeLike "*This template deploys a Storage Account including blob containers and files shares. Encryption in transit it enabled using a minimum of TLS 1.2.*";
"description": "Create or update a Storage Account."
5
+
"description": "This template deploys a Storage Account including blob containers and files shares. Encryption in transit it enabled using a minimum of TLS 1.2."
0 commit comments