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
Added optional snippets and badges #31#30#42 (#44)
* Added optional snippets and badges #31#30#42
* Remove quick start config
* Get option from root path
* Doc improvements based on feedback @vicperdana
The follow example shows source markdown for including badges:
72
+
73
+
```markdown
74
+

75
+
[](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2F{{ template_path_encoded }}%2Fazuredeploy.json)
76
+
```
77
+
78
+
After replacement the following would be the resulting output included in the template document:
79
+
80
+
```markdown
81
+

82
+
[](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Ftemplates%2fstorage%2fv1%2Fazuredeploy.json)
83
+
```
84
+
85
+
## NOTE
86
+
87
+
An online version of this document is available at https://github.com/Azure/PSDocs.Azure/blob/main/docs/concepts/en-US/about_PSDocs_Azure_Badges.md.
This configuration option determines if a parameter file snippet is added to documentation.
25
+
By default, a snippet is generated.
26
+
To prevent a parameter file snippet being generated, set this option to `false`.
27
+
28
+
Syntax:
29
+
30
+
```yaml
31
+
configuration:
32
+
AZURE_USE_PARAMETER_FILE_SNIPPET: bool # Either true or false
33
+
```
34
+
35
+
Default:
36
+
37
+
```yaml
38
+
# YAML: The default AZURE_USE_PARAMETER_FILE_SNIPPET configuration option
39
+
configuration:
40
+
AZURE_USE_PARAMETER_FILE_SNIPPET: true
41
+
```
42
+
43
+
Example:
44
+
45
+
```yaml
46
+
# YAML: Prevent parameter file snippet from being generated
47
+
configuration:
48
+
AZURE_USE_PARAMETER_FILE_SNIPPET: false
49
+
```
50
+
51
+
## NOTE
52
+
53
+
An online version of this document is available at https://github.com/Azure/PSDocs.Azure/blob/main/docs/concepts/en-US/about_PSDocs_Azure_Configuration.md.
0 commit comments