We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d2e782 commit 96abbbcCopy full SHA for 96abbbc
Pipelines/Scripts/prepare-pages.ps1
@@ -37,7 +37,7 @@ Add-Content -Path $indexDestination -Value (Get-Content -Path (Join-Path $Projec
37
# We leave them checked-in so they render correctly in the GitHub repo, but we convert them for Pages
38
Get-ChildItem -Path (Join-Path $docs "*" "*.md") -Recurse | ForEach-Object {
39
$fileContent = Get-Content -Path $_
40
- Set-Content -Path $_ -Value ($fileContent -replace "> \[!(\w+)\]", { "{: .$("$($_.Groups[1])".ToLower()) }" })
+ Set-Content -Path $_ -Value ($fileContent -replace "> \[!(\w+)\]", { "{: .$("$($_.Groups[1])".ToLower()) }" } -replace ".md", ".html")
41
}
42
43
# Loop through package directories and copy documentation
0 commit comments