Skip to content

Commit 8179e7b

Browse files
committed
fix parameters in code fence
1 parent c76d8ec commit 8179e7b

16 files changed

+45
-45
lines changed

articles/app-service/app-service-web-get-started-html.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ This command may take a few minutes to run. While running, it displays informati
6060

6161
<pre>
6262
{
63-
"app_url": "https://<app_name>.azurewebsites.net",
63+
"app_url": "https://\<app_name>.azurewebsites.net",
6464
"location": "westeurope",
65-
"name": "<app_name>",
65+
"name": "\<app_name>",
6666
"os": "Windows",
6767
"resourcegroup": "appsvc_rg_Windows_westeurope",
6868
"serverfarm": "appsvc_asp_Windows_westeurope",
6969
"sku": "FREE",
70-
"src_path": "/home/<username>/quickstart/html-docs-hello-world ",
70+
"src_path": "/home/\<username>/quickstart/html-docs-hello-world ",
7171
< JSON data removed for brevity. >
7272
}
7373
</pre>

articles/app-service/app-service-web-get-started-nodejs.experimental.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ When the web app has been created, the Azure CLI shows output similar to the fol
8080
"cloningInfo": null,
8181
"containerSize": 0,
8282
"dailyMemoryTimeQuota": 0,
83-
"defaultHostName": "<app_name>.azurewebsites.net",
83+
"defaultHostName": "\<app_name>.azurewebsites.net",
8484
"enabled": true,
8585
< JSON data removed for brevity. >
8686
}

articles/app-service/app-service-web-get-started-php.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,15 @@ az --% webapp create --resource-group myResourceGroup --plan myAppServicePlan --
8181
When the web app has been created, the Azure CLI shows output similar to the following example:
8282

8383
<pre>
84-
Local git is configured with url of 'https://<username>@<app_name>.scm.azurewebsites.net/<app_name>.git'
84+
Local git is configured with url of 'https://\<username>@\<app_name>.scm.azurewebsites.net/\<app_name>.git'
8585
{
8686
"availabilityState": "Normal",
8787
"clientAffinityEnabled": true,
8888
"clientCertEnabled": false,
8989
"cloningInfo": null,
9090
"containerSize": 0,
9191
"dailyMemoryTimeQuota": 0,
92-
"defaultHostName": "<app_name>.azurewebsites.net",
92+
"defaultHostName": "\<app_name>.azurewebsites.net",
9393
"enabled": true,
9494
< JSON data removed for brevity. >
9595
}

articles/app-service/app-service-web-tutorial-dotnetcore-sqldb.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,14 @@ When the SQL Database logical server is created, the Azure CLI shows information
9797

9898
<pre>
9999
{
100-
"administratorLogin": "sqladmin",
100+
"administratorLogin": "\<db_username>",
101101
"administratorLoginPassword": null,
102-
"fullyQualifiedDomainName": "<server_name>.database.windows.net",
103-
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Sql/servers/<server_name>",
102+
"fullyQualifiedDomainName": "\<server_name>.database.windows.net",
103+
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Sql/servers/\<server_name>",
104104
"identity": null,
105105
"kind": "v12.0",
106106
"location": "westeurope",
107-
"name": "<server_name>",
107+
"name": "\<server_name>",
108108
"resourceGroup": "myResourceGroup",
109109
"state": "Ready",
110110
"tags": null,

articles/app-service/app-service-web-tutorial-nodejs-mongodb-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ When the Cosmos DB account is created, the Azure CLI shows information similar t
147147
"maxStalenessPrefix": 100
148148
},
149149
"databaseAccountOfferType": "Standard",
150-
"documentEndpoint": "https://<cosmosdb_name>.documents.azure.com:443/",
150+
"documentEndpoint": "https://\<cosmosdb_name>.documents.azure.com:443/",
151151
"failoverPolicies":
152152
...
153153
< Output truncated for readability >

articles/app-service/app-service-web-tutorial-php-mysql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ When the MySQL server is created, the Azure CLI shows information similar to the
168168
<pre>
169169
{
170170
"location": "westeurope",
171-
"name": "<mysql_server_name>",
171+
"name": "\<mysql_server_name>",
172172
"resourceGroup": "myResourceGroup",
173173
"sku": {
174174
"additionalProperties": {},

articles/app-service/containers/quickstart-dotnetcore.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ remote: Repository Commit : d6b54472f7e8e9fd885ffafaa64522e74cf370e1
115115
.
116116
.
117117
remote: Deployment successful.
118-
remote: Deployment Logs : 'https://<app-name>.scm.azurewebsites.net/newui/jsonviewer?view_url=/api/deployments/d6b54472f7e8e9fd885ffafaa64522e74cf370e1/log'
119-
To https://<app-name>.scm.azurewebsites.net:443/<app-name>.git
118+
remote: Deployment Logs : 'https://\<app-name>.scm.azurewebsites.net/newui/jsonviewer?view_url=/api/deployments/d6b54472f7e8e9fd885ffafaa64522e74cf370e1/log'
119+
To https://\<app-name>.scm.azurewebsites.net:443/\<app-name>.git
120120
d87e6ca..d6b5447 master -> master
121121
</pre>
122122

articles/app-service/containers/quickstart-multi-container.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ When the web app has been created, the Azure CLI shows output similar to the fol
113113
"cloningInfo": null,
114114
"containerSize": 0,
115115
"dailyMemoryTimeQuota": 0,
116-
"defaultHostName": "<app_name>.azurewebsites.net",
116+
"defaultHostName": "\<app_name>.azurewebsites.net",
117117
"enabled": true,
118118
< JSON data removed for brevity. >
119119
}

articles/app-service/containers/quickstart-python.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,18 +112,18 @@ Creating Resource group 'appsvc_rg_Linux_centralus' ...
112112
Resource group creation complete
113113
Creating App service plan 'appsvc_asp_Linux_centralus' ...
114114
App service plan creation complete
115-
Creating app '<app-name>' ....
115+
Creating app '\<app-name>' ....
116116
Configuring default logging for the app, if not already enabled
117117
Creating zip with contents of dir D:\Examples\python-docs-hello-world ...
118118
Getting scm site credentials for zip deployment
119119
Starting zip deployment. This operation can take a while to complete ...
120120
Deployment endpoint responded with status code 202
121-
You can launch the app at http://<app-name>.azurewebsites.net
121+
You can launch the app at http://\<app-name>.azurewebsites.net
122122
{
123-
"URL": "http://<app-name>.net",
123+
"URL": "http://\<app-name>.net",
124124
"appserviceplan": "appsvc_asp_Linux_centralus",
125125
"location": "eastus",
126-
"name": "<app-name>",
126+
"name": "\<app-name>",
127127
"os": "Linux",
128128
"resourcegroup": "appsvc_rg_Linux_centralus",
129129
"runtime_version": "python|3.7",

articles/app-service/containers/tutorial-custom-docker-image.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ The output reveals two passwords along with the user name.
131131
"value": "{password}"
132132
}
133133
],
134-
"username": "<registry-username>"
134+
"username": "\<registry-username>"
135135
}
136136
</pre>
137137

@@ -192,8 +192,8 @@ When the web app has been created, the Azure CLI shows output similar to the fol
192192
"cloningInfo": null,
193193
"containerSize": 0,
194194
"dailyMemoryTimeQuota": 0,
195-
"defaultHostName": "<app-name>.azurewebsites.net",
196-
"deploymentLocalGitUrl": "https://<username>@<app-name>.scm.azurewebsites.net/<app-name>.git",
195+
"defaultHostName": "\<app-name>.azurewebsites.net",
196+
"deploymentLocalGitUrl": "https://\<username>@\<app-name>.scm.azurewebsites.net/\<app-name>.git",
197197
"enabled": true,
198198
< JSON data removed for brevity. >
199199
}

0 commit comments

Comments
 (0)