-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconvert_keys.ps1
88 lines (75 loc) · 2.48 KB
/
convert_keys.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Install PowerShell-yaml module if not already installed
if (-not (Get-Module -ListAvailable -Name powershell-yaml)) {
Install-Module -Name powershell-yaml -Force -Scope CurrentUser
}
Import-Module powershell-yaml
function Process-MarkdownFile {
param (
[string]$FilePath
)
try {
# Read the file content as an array of lines
$lines = Get-Content -Path $FilePath
# Check if file starts with front matter
if ($lines[0] -ne "---") {
return
}
# Find the second marker
$endIndex = -1
for ($i = 1; $i -lt $lines.Count; $i++) {
if ($lines[$i] -eq "---") {
$endIndex = $i
break
}
}
if ($endIndex -eq -1) {
return
}
# Check if the file has comments
$hasComments = $false
for ($i = 0; $i -lt $endIndex; $i++) {
if ($lines[$i] -match "comments:") {
$hasComments = $true
break
}
}
if (-not $hasComments) {
return
}
$modified = $false
# Process each line in the front matter
for ($i = 0; $i -lt $endIndex; $i++) {
$line = $lines[$i]
# Check for comment keys and convert to lowercase
if ($line -match '^\s*-\s*Email:') {
$lines[$i] = $line -replace 'Email:', 'email:'
$modified = $true
}
elseif ($line -match '^\s+Message:') {
$lines[$i] = $line -replace 'Message:', 'message:'
$modified = $true
}
elseif ($line -match '^\s+Name:') {
$lines[$i] = $line -replace 'Name:', 'name:'
$modified = $true
}
elseif ($line -match '^\s+When:') {
$lines[$i] = $line -replace 'When:', 'when:'
$modified = $true
}
}
# Only rewrite if changes were made
if ($modified) {
[System.IO.File]::WriteAllLines($FilePath, $lines)
Write-Host "Updated $FilePath"
}
}
catch {
Write-Host "Error processing $FilePath"
Write-Host $_.Exception.Message
}
}
# Process all .md files in the Content directory
Get-ChildItem -Path "src/BlogEngine.Site/Content" -Recurse -Filter "*.md" | ForEach-Object {
Process-MarkdownFile -FilePath $_.FullName
}