Skip to content

Commit c76d8ec

Browse files
committed
fix code fence
1 parent 1620653 commit c76d8ec

26 files changed

+83
-82
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The `az webapp up` command does the following actions:
5858

5959
This command may take a few minutes to run. While running, it displays information similar to the following example:
6060

61-
```json
61+
<pre>
6262
{
6363
"app_url": "https://<app_name>.azurewebsites.net",
6464
"location": "westeurope",
@@ -70,7 +70,7 @@ This command may take a few minutes to run. While running, it displays informati
7070
"src_path": "/home/<username>/quickstart/html-docs-hello-world ",
7171
< JSON data removed for brevity. >
7272
}
73-
```
73+
</pre>
7474

7575
Make a note of the `resourceGroup` value. You need it for the [clean up resources](#clean-up-resources) section.
7676

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ az webapp create --resource-group myResourceGroup --plan myAppServicePlan --name
7272

7373
When the web app has been created, the Azure CLI shows output similar to the following example:
7474

75-
```json
75+
<pre>
7676
{
7777
"availabilityState": "Normal",
7878
"clientAffinityEnabled": true,
@@ -84,7 +84,7 @@ When the web app has been created, the Azure CLI shows output similar to the fol
8484
"enabled": true,
8585
< JSON data removed for brevity. >
8686
}
87-
```
87+
</pre>
8888

8989
### Set Node.js runtime
9090

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

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

83-
```json
83+
<pre>
8484
Local git is configured with url of 'https://<username>@<app_name>.scm.azurewebsites.net/<app_name>.git'
8585
{
8686
"availabilityState": "Normal",
@@ -93,7 +93,8 @@ Local git is configured with url of 'https://<username>@<app_name>.scm.azurewebs
9393
"enabled": true,
9494
< JSON data removed for brevity. >
9595
}
96-
```
96+
</pre>
97+
9798
You've created an empty new web app, with git deployment enabled.
9899

99100
> [!NOTE]

articles/app-service/app-service-web-tutorial-connect-msi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,14 +200,14 @@ az webapp identity assign --resource-group myResourceGroup --name <app-name>
200200

201201
Here's an example of the output:
202202

203-
```json
203+
<pre>
204204
{
205205
"additionalProperties": {},
206206
"principalId": "21dfa71c-9e6f-4d17-9e90-1d28801c9735",
207207
"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
208208
"type": "SystemAssigned"
209209
}
210-
```
210+
</pre>
211211

212212
### Grant permissions to managed identity
213213

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ az sql server create --name <server_name> --resource-group myResourceGroup --loc
9595

9696
When the SQL Database logical server is created, the Azure CLI shows information similar to the following example:
9797

98-
```json
98+
<pre>
9999
{
100100
"administratorLogin": "sqladmin",
101101
"administratorLoginPassword": null,
@@ -111,7 +111,7 @@ When the SQL Database logical server is created, the Azure CLI shows information
111111
"type": "Microsoft.Sql/servers",
112112
"version": "12.0"
113113
}
114-
```
114+
</pre>
115115

116116
### Configure a server firewall rule
117117

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ The *--kind MongoDB* parameter enables MongoDB client connections.
138138

139139
When the Cosmos DB account is created, the Azure CLI shows information similar to the following example:
140140

141-
```json
141+
<pre>
142142
{
143143
"consistencyPolicy":
144144
{
@@ -152,7 +152,7 @@ When the Cosmos DB account is created, the Azure CLI shows information similar t
152152
...
153153
< Output truncated for readability >
154154
}
155-
```
155+
</pre>
156156

157157
## Connect app to production MongoDB
158158

@@ -168,14 +168,14 @@ az cosmosdb list-keys --name <cosmosdb_name> --resource-group myResourceGroup
168168

169169
The Azure CLI shows information similar to the following example:
170170

171-
```json
171+
<pre>
172172
{
173173
"primaryMasterKey": "RS4CmUwzGRASJPMoc0kiEvdnKmxyRILC9BWisAYh3Hq4zBYKr0XQiSE4pqx3UchBeO4QRCzUt1i7w0rOkitoJw==",
174174
"primaryReadonlyMasterKey": "HvitsjIYz8TwRmIuPEUAALRwqgKOzJUjW22wPL2U8zoMVhGvregBkBk9LdMTxqBgDETSq7obbwZtdeFY7hElTg==",
175175
"secondaryMasterKey": "Lu9aeZTiXU4PjuuyGBbvS1N9IRG3oegIrIh95U6VOstf9bJiiIpw3IfwSUgQWSEYM3VeEyrhHJ4rn3Ci0vuFqA==",
176176
"secondaryReadonlyMasterKey": "LpsCicpVZqHRy7qbMgrzbRKjbYCwCKPQRl0QpgReAOxMcggTvxJFA94fTi0oQ7xtxpftTJcXkjTirQ0pT7QFrQ=="
177177
}
178-
```
178+
</pre>
179179

180180
Copy the value of `primaryMasterKey`. You need this information in the next step.
181181

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ az mysql server create --resource-group myResourceGroup --name <mysql_server_nam
165165
166166
When the MySQL server is created, the Azure CLI shows information similar to the following example:
167167

168-
```json
168+
<pre>
169169
{
170170
"location": "westeurope",
171171
"name": "<mysql_server_name>",
@@ -182,7 +182,7 @@ When the MySQL server is created, the Azure CLI shows information similar to the
182182
... +
183183
- < Output has been truncated for readability >
184184
}
185-
```
185+
</pre>
186186

187187
### Configure server firewall
188188

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Here is what your new app should look like:
9393

9494
[!INCLUDE [Push to Azure](../../../includes/app-service-web-git-push-to-azure.md)]
9595

96-
```bash
96+
<pre>
9797
Enumerating objects: 5, done.
9898
Counting objects: 100% (5/5), done.
9999
Compressing objects: 100% (3/3), done.
@@ -118,7 +118,7 @@ remote: Deployment successful.
118118
remote: Deployment Logs : 'https://<app-name>.scm.azurewebsites.net/newui/jsonviewer?view_url=/api/deployments/d6b54472f7e8e9fd885ffafaa64522e74cf370e1/log'
119119
To https://<app-name>.scm.azurewebsites.net:443/<app-name>.git
120120
d87e6ca..d6b5447 master -> master
121-
```
121+
</pre>
122122

123123
## Browse to the app
124124

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ az appservice plan create --name myAppServicePlan --resource-group myResourceGro
7373

7474
When the App Service plan has been created, the Azure CLI shows information similar to the following example:
7575

76-
```json
76+
<pre>
7777
{
7878
"adminSiteName": null,
7979
"appServicePlanName": "myAppServicePlan",
@@ -89,7 +89,7 @@ When the App Service plan has been created, the Azure CLI shows information simi
8989
"type": "Microsoft.Web/serverfarms",
9090
"workerTierName": null
9191
}
92-
```
92+
</pre>
9393

9494
## Create a Docker Compose app
9595

@@ -104,7 +104,7 @@ az webapp create --resource-group myResourceGroup --plan myAppServicePlan --name
104104

105105
When the web app has been created, the Azure CLI shows output similar to the following example:
106106

107-
```json
107+
<pre>
108108
{
109109
"additionalProperties": {},
110110
"availabilityState": "Normal",
@@ -117,7 +117,7 @@ When the web app has been created, the Azure CLI shows output similar to the fol
117117
"enabled": true,
118118
< JSON data removed for brevity. >
119119
}
120-
```
120+
</pre>
121121

122122
### Browse to the app
123123

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ az acr credential show --name <azure-container-registry-name>
119119

120120
The output reveals two passwords along with the user name.
121121

122-
```json
122+
<pre>
123123
{
124124
"passwords": [
125125
{
@@ -133,7 +133,7 @@ The output reveals two passwords along with the user name.
133133
],
134134
"username": "<registry-username>"
135135
}
136-
```
136+
</pre>
137137

138138
From your local terminal window, sign in to the Azure Container Registry using the `docker login` command, as shown in the following example. Replace *\<azure-container-registry-name>* and *\<registry-username>* with values for your registry. When prompted, type in one of the passwords from the previous step.
139139

@@ -164,11 +164,11 @@ az acr repository list -n <azure-container-registry-name>
164164

165165
You should get the following output.
166166

167-
```json
167+
<pre>
168168
[
169169
"mydockerimage"
170170
]
171-
```
171+
</pre>
172172

173173
### Create App Service plan
174174

@@ -184,7 +184,7 @@ az webapp create --resource-group myResourceGroup --plan myAppServicePlan --name
184184

185185
When the web app has been created, the Azure CLI shows output similar to the following example:
186186

187-
```json
187+
<pre>
188188
{
189189
"availabilityState": "Normal",
190190
"clientAffinityEnabled": true,
@@ -197,7 +197,7 @@ When the web app has been created, the Azure CLI shows output similar to the fol
197197
"enabled": true,
198198
< JSON data removed for brevity. >
199199
}
200-
```
200+
</pre>
201201

202202
### Configure registry credentials in web app
203203

0 commit comments

Comments
 (0)