Skip to content

Commit f2f9f3d

Browse files
Merge pull request #216004 from alexbuckgit/alexbuckgit/docutune-autopr-20221026-161844-0971231
[BULK] Fix code block spacing issues (part 1)
2 parents cc8104b + c6287b4 commit f2f9f3d

File tree

6 files changed

+13
-0
lines changed

6 files changed

+13
-0
lines changed

articles/active-directory/managed-identities-azure-resources/tutorial-linux-vm-access-cosmos-db.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ To gain access to the Azure Cosmos DB account access keys from the Resource Mana
6868
```azurecli-interactive
6969
az resource show --id /subscriptions/<SUBSCRIPTION ID>/resourceGroups/<RESOURCE GROUP>/providers/Microsoft.Compute/virtualMachines/<VM NAMe> --api-version 2017-12-01
7070
```
71+
7172
The response includes the details of the system-assigned managed identity (note the principalID as it is used in the next section):
7273

7374
```output

articles/active-directory/managed-identities-azure-resources/tutorial-linux-vm-access-storage-access-key.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ The CURL response gives you the list of Keys:
116116
```bash
117117
{"keys":[{"keyName":"key1","permissions":"Full","value":"iqDPNt..."},{"keyName":"key2","permissions":"Full","value":"U+uI0B..."}]}
118118
```
119+
119120
Create a sample blob file to upload to your blob storage container. On a Linux VM, you can do this with the following command.
120121

121122
```bash

articles/app-service/deploy-container-github-action.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ When you configure the workflow file later, you use the secret for the input `cr
151151
with:
152152
creds: ${{ secrets.AZURE_CREDENTIALS }}
153153
```
154+
154155
# [OpenID Connect](#tab/openid)
155156
156157
You need to provide your application's **Client ID**, **Tenant ID** and **Subscription ID** to the login action. These values can either be provided directly in the workflow or can be stored in GitHub secrets and referenced in your workflow. Saving the values as GitHub secrets is the more secure option.
@@ -277,6 +278,7 @@ jobs:
277278
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
278279
images: 'mycontainer.azurecr.io/myapp:${{ github.sha }}'
279280
```
281+
280282
# [Service principal](#tab/service-principal)
281283

282284
```yaml
@@ -359,6 +361,7 @@ jobs:
359361
run: |
360362
az logout
361363
```
364+
362365
---
363366

364367
## Next steps

articles/applied-ai-services/immersive-reader/tutorial-ios-picture-immersive-reader.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,11 @@ Choose **Single View App**.
4444
The easiest way to use the Immersive Reader SDK is via CocoaPods. To install via Cocoapods:
4545

4646
1. [Install CocoaPods](http://guides.cocoapods.org/using/getting-started.html) - Follow the getting started guide to install Cocoapods.
47+
4748
2. Create a Podfile by running `pod init` in your Xcode project's root directory.
49+
4850
3. Add the CocoaPod to your Podfile by adding `pod 'immersive-reader-sdk', :path => 'https://github.com/microsoft/immersive-reader-sdk/tree/master/iOS/immersive-reader-sdk'`. Your Podfile should look like the following, with your target's name replacing picture-to-immersive-reader-swift:
51+
4952
```ruby
5053
platform :ios, '9.0'
5154

@@ -55,8 +58,11 @@ The easiest way to use the Immersive Reader SDK is via CocoaPods. To install via
5558
pod 'immersive-reader-sdk', :git => 'https://github.com/microsoft/immersive-reader-sdk.git'
5659
end
5760
```
61+
5862
4. In the terminal, in the directory of your Xcode project, run the command `pod install` to install the Immersive Reader SDK pod.
63+
5964
5. Add `import immersive_reader_sdk` to all files that need to reference the SDK.
65+
6066
6. Ensure to open the project by opening the `.xcworkspace` file and not the `.xcodeproj` file.
6167

6268
## Acquire an Azure AD authentication token

articles/cognitive-services/Speech-Service/includes/quickstarts/speaker-recognition-basics/go.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ Now build and run the code:
194194
go build
195195
go run independent-identification
196196
```
197+
197198
## Perform independent verification
198199
199200
Follow these steps to create a new GO module.

articles/databox-online/azure-stack-edge-gpu-deploy-virtual-machine-install-gpu-extension.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ $templateParameterFile = "<Path to addGPUExtWindowsVM.parameters.json>"
216216
RGName = "<Name of your resource group>"
217217
New-AzureRmResourceGroupDeployment -ResourceGroupName $RGName -TemplateFile $templateFile -TemplateParameterFile $templateParameterFile -Name "<Name for your deployment>"
218218
```
219+
219220
> [!NOTE]
220221
> The extension deployment is a long running job and takes about 10 minutes to complete.
221222

0 commit comments

Comments
 (0)