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 9bb59ed commit 705c7efCopy full SHA for 705c7ef
1 file changed
Pipelines/Scripts/prepare-pages.ps1
@@ -84,7 +84,8 @@ parent: $packageFriendlyName
84
# Create file, add front matter, and copy content
85
$fileFolder = Join-Path $packageDocsPath ($_.DirectoryName | Split-Path -Leaf)
86
New-Item -Path $fileFolder -ItemType Directory
87
- $fileDestination = Join-Path $fileFolder $_.Name
+ # Remove the ~ from the Documentation~ folder name
88
+ $fileDestination = Join-Path ($fileFolder.Replace('~', '')) $_.Name
89
$fileTitle = Select-String -Pattern "# (.+)" -Path $_ | Select-Object -First 1
90
New-Item -Path $fileDestination -ItemType File -Value @"
91
---
0 commit comments