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