Skip to content

Commit 01557b1

Browse files
author
Kristopher Turner
committed
fix: replace invalid MDX arrow syntax with Unicode arrows
1 parent 1038623 commit 01557b1

194 files changed

Lines changed: 1089 additions & 1303 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

audit-results.txt

Lines changed: 179 additions & 0 deletions
Large diffs are not rendered by default.

audit-script.ps1

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
$results = @()
2+
$files = Get-ChildItem "E:\git\azurelocal.github.io\docs\implementation" -Recurse -Filter "*.mdx"
3+
4+
foreach ($file in $files) {
5+
$lines = Get-Content $file.FullName
6+
$inBlock = $false
7+
$hasIssue = $false
8+
9+
for ($i = 0; $i -lt $lines.Count; $i++) {
10+
$line = $lines[$i]
11+
if ($line -match '^> \*\*DOCUMENT CATEGORY\*\*') {
12+
$inBlock = $true
13+
}
14+
if ($inBlock -and $line -match '^> \*\*') {
15+
if (-not ($line -match ' $')) {
16+
$hasIssue = $true
17+
}
18+
} elseif ($inBlock -and $line -notmatch '^> \*\*') {
19+
$inBlock = $false
20+
}
21+
}
22+
23+
if ($hasIssue) {
24+
$results += $file.FullName.Replace("E:\git\azurelocal.github.io\", "")
25+
}
26+
}
27+
28+
"=== FILES WITH DOCUMENT INFO BLOCK FORMATTING ISSUES ===" | Out-File "E:\git\azurelocal.github.io\audit-results.txt"
29+
"Total: $($results.Count) files" | Out-File "E:\git\azurelocal.github.io\audit-results.txt" -Append
30+
"" | Out-File "E:\git\azurelocal.github.io\audit-results.txt" -Append
31+
$results | Out-File "E:\git\azurelocal.github.io\audit-results.txt" -Append
32+
33+
Write-Host "Done! Check audit-results.txt"

docs/implementation/01-cicd-infra/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import TabItem from '@theme/TabItem';
1616
[![GitLab](https://img.shields.io/badge/Platform-GitLab-FC6D26?style=flat-square&logo=gitlab)](https://gitlab.com)
1717
[![Azure DevOps](https://img.shields.io/badge/Platform-Azure%20DevOps-0078D7?style=flat-square&logo=azuredevops)](https://dev.azure.com)
1818

19-
> **DOCUMENT CATEGORY**: Part Overview
20-
> **SCOPE**: Azure Local management infrastructure (Phase 01)
19+
> **DOCUMENT CATEGORY**: Part Overview
20+
> **SCOPE**: Azure Local management infrastructure (Phase 01)
2121
> **PURPOSE**: Establish source control project, CI/CD runners, and automation infrastructure
2222
2323
**Status**: Active

docs/implementation/01-cicd-infra/phase-01-cicd-setup/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import TabItem from '@theme/TabItem';
1515
[![GitLab](https://img.shields.io/badge/Platform-GitLab-FC6D26?style=flat-square&logo=gitlab)](https://gitlab.com)
1616
[![Azure DevOps](https://img.shields.io/badge/Platform-Azure%20DevOps-0078D7?style=flat-square&logo=azuredevops)](https://dev.azure.com)
1717

18-
> **DOCUMENT CATEGORY**: Phase Overview
19-
> **SCOPE**: Source control project creation and CI/CD configuration
18+
> **DOCUMENT CATEGORY**: Phase Overview
19+
> **SCOPE**: Source control project creation and CI/CD configuration
2020
> **PURPOSE**: Establish deployment source control project with proper settings and environments
2121
2222
**Status**: Active

docs/implementation/01-cicd-infra/phase-01-cicd-setup/task-01-bootstrap.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ import TabItem from '@theme/TabItem';
2727
[![Runbook](https://img.shields.io/badge/Type-Runbook-blue?style=flat-square)](../index.mdx)
2828
[![Azure](https://img.shields.io/badge/Platform-Azure-0078D4?style=flat-square&logo=microsoftazure)](https://portal.azure.com)
2929

30-
> **DOCUMENT CATEGORY**: Runbook Step
31-
> **SCOPE**: CI/CD service principal bootstrap
30+
> **DOCUMENT CATEGORY**: Runbook Step
31+
> **SCOPE**: CI/CD service principal bootstrap
3232
> **PURPOSE**: Create an Entra ID app registration and service principal for CI/CD pipeline authentication
3333
3434
**Status**: Active

docs/implementation/01-cicd-infra/phase-01-cicd-setup/task-02-create-project.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ import TabItem from '@theme/TabItem';
3232
[![GitLab](https://img.shields.io/badge/Platform-GitLab-FC6D26?style=flat-square&logo=gitlab)](https://gitlab.com)
3333
[![Azure DevOps](https://img.shields.io/badge/Platform-Azure%20DevOps-0078D7?style=flat-square&logo=azuredevops)](https://dev.azure.com)
3434

35-
> **DOCUMENT CATEGORY**: Runbook Step
36-
> **SCOPE**: Source control project creation
37-
> **PURPOSE**: Create deployment source control project from Azure Local template
35+
> **DOCUMENT CATEGORY**: Runbook Step
36+
> **SCOPE**: Source control project creation
37+
> **PURPOSE**: Create deployment source control project from Azure Local template
3838
> **MASTER REFERENCE**: [Source Control Project Setup Guide](https://github.com/AzureLocal)
3939
4040
**Status**: Active
@@ -185,7 +185,7 @@ Create a new source control project/repository for the deployment using the Azur
185185

186186
| Previous | Up | Next |
187187
|----------|-----|------|
188-
| [<- Task 01: Bootstrap](./task-01-bootstrap.mdx) | [Phase 01: CI/CD Setup](./index.mdx) | [Task 03: Configure Project Settings ->](./task-03-configure-project.mdx) |
188+
| [ Task 01: Bootstrap](./task-01-bootstrap.mdx) | [Phase 01: CI/CD Setup](./index.mdx) | [Task 03: Configure Project Settings ->](./task-03-configure-project.mdx) |
189189

190190
---
191191

docs/implementation/01-cicd-infra/phase-01-cicd-setup/task-03-configure-project.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ import TabItem from '@theme/TabItem';
3131
[![GitLab](https://img.shields.io/badge/Platform-GitLab-FC6D26?style=flat-square&logo=gitlab)](https://gitlab.com)
3232
[![Azure DevOps](https://img.shields.io/badge/Platform-Azure_DevOps-0078D7?style=flat-square&logo=azuredevops)](https://dev.azure.com)
3333

34-
> **DOCUMENT CATEGORY**: Runbook Step
35-
> **SCOPE**: Source control project configuration
34+
> **DOCUMENT CATEGORY**: Runbook Step
35+
> **SCOPE**: Source control project configuration
3636
> **PURPOSE**: Configure repository settings, branch protection, and merge/pull request approvals
3737
3838
**Status**: Active
@@ -297,7 +297,7 @@ Configure in **Repos** → **Branches** → `main` branch policies:
297297

298298
| Previous | Up | Next |
299299
|----------|-----|------|
300-
| [<- Task 02: Create source control project](./task-02-create-project.mdx) | [Phase 01: CI/CD Setup](./index.mdx) | [Task 04: Create Environments ->](./task-04-create-environments.mdx) |
300+
| [ Task 02: Create source control project](./task-02-create-project.mdx) | [Phase 01: CI/CD Setup](./index.mdx) | [Task 04: Create Environments ->](./task-04-create-environments.mdx) |
301301

302302
---
303303

docs/implementation/01-cicd-infra/phase-01-cicd-setup/task-04-create-environments.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ import TabItem from '@theme/TabItem';
3030
[![GitLab](https://img.shields.io/badge/Platform-GitLab-FC6D26?style=flat-square&logo=gitlab)](https://gitlab.com)
3131
[![Azure DevOps](https://img.shields.io/badge/Platform-Azure_DevOps-0078D7?style=flat-square&logo=azuredevops)](https://dev.azure.com)
3232

33-
> **DOCUMENT CATEGORY**: Runbook Step
34-
> **SCOPE**: Deployment environment creation
33+
> **DOCUMENT CATEGORY**: Runbook Step
34+
> **SCOPE**: Deployment environment creation
3535
> **PURPOSE**: Create deployment environments for infrastructure automation
3636
3737
**Status**: Active
@@ -197,7 +197,7 @@ Azure DevOps Environments are referenced in YAML pipelines via the `environment:
197197

198198
| Previous | Up | Next |
199199
|----------|-----|------|
200-
| [<- Task 03: Configure Project Settings](./task-03-configure-project.mdx) | [Phase 01: CI/CD Setup](./index.mdx) | [Task 05: Configure Environment Variables ->](./task-05-configure-variables.mdx) |
200+
| [ Task 03: Configure Project Settings](./task-03-configure-project.mdx) | [Phase 01: CI/CD Setup](./index.mdx) | [Task 05: Configure Environment Variables ->](./task-05-configure-variables.mdx) |
201201

202202
---
203203

docs/implementation/01-cicd-infra/phase-01-cicd-setup/task-05-configure-variables.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ import TabItem from '@theme/TabItem';
3131
[![GitLab](https://img.shields.io/badge/Platform-GitLab-FC6D26?style=flat-square&logo=gitlab)](https://gitlab.com)
3232
[![Azure DevOps](https://img.shields.io/badge/Platform-Azure%20DevOps-0078D7?style=flat-square&logo=azuredevops)](https://dev.azure.com)
3333

34-
> **DOCUMENT CATEGORY**: Runbook Step
35-
> **SCOPE**: CI/CD pipeline variable configuration
36-
> **PURPOSE**: Configure environment variables for Azure authentication
34+
> **DOCUMENT CATEGORY**: Runbook Step
35+
> **SCOPE**: CI/CD pipeline variable configuration
36+
> **PURPOSE**: Configure environment variables for Azure authentication
3737
> **MASTER REFERENCE**: See platform-specific docs below
3838
3939
**Status**: Active
@@ -229,7 +229,7 @@ variables:
229229
230230
| Previous | Up | Next |
231231
|----------|-----|------|
232-
| [<- Task 04: Create Environments](./task-04-create-environments.mdx) | [Phase 01: CI/CD Setup](./index.mdx) | [Task 06: Deploy Runners ->](./task-06-deploy-runners.mdx) |
232+
| [ Task 04: Create Environments](./task-04-create-environments.mdx) | [Phase 01: CI/CD Setup](./index.mdx) | [Task 06: Deploy Runners ->](./task-06-deploy-runners.mdx) |
233233
234234
---
235235

docs/implementation/01-cicd-infra/phase-01-cicd-setup/task-06-deploy-runners.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ import TabItem from '@theme/TabItem';
3131
[![Azure DevOps](https://img.shields.io/badge/Platform-Azure%20DevOps-0078D7?style=flat-square&logo=azuredevops)](https://dev.azure.com)
3232
[![Terraform](https://img.shields.io/badge/IaC-Terraform-7B42BC?style=flat-square&logo=terraform)](https://terraform.io)
3333

34-
> **DOCUMENT CATEGORY**: Runbook Step
35-
> **SCOPE**: CI/CD runner planning and deployment
36-
> **PURPOSE**: Evaluate hosting options and deploy self-hosted CI/CD runners
34+
> **DOCUMENT CATEGORY**: Runbook Step
35+
> **SCOPE**: CI/CD runner planning and deployment
36+
> **PURPOSE**: Evaluate hosting options and deploy self-hosted CI/CD runners
3737
> **MASTER REFERENCE**: [Azure Local Toolkit — CI/CD Runner Module](https://github.com/AzureLocal/azurelocal-toolkit)
3838
3939
**Status**: Active
@@ -619,7 +619,7 @@ steps:
619619

620620
| Previous | Up | Next |
621621
|----------|-----|------|
622-
| [<- Task 05: Configure Environment Variables](./task-05-configure-variables.mdx) | [Phase 01: CI/CD Setup](./index.mdx) | --- |
622+
| [ Task 05: Configure Environment Variables](./task-05-configure-variables.mdx) | [Phase 01: CI/CD Setup](./index.mdx) | --- |
623623

624624
---
625625

0 commit comments

Comments
 (0)