@@ -25,7 +25,7 @@ function Render-Groups {
2525
2626 foreach ($group in $groups ) {
2727 $groupName = $group .' @name'
28- $destination = " $destinationDirectory \ groups\ $groupName .html"
28+ $destination = " $destinationDirectory / groups/ $groupName .html"
2929 $directoryDepth = ($destination -split ' [\\/]' ).Count - ($destinationDirectory -split ' [\\/]' ).Count - 1
3030
3131 $content = Render- IndexPage `
@@ -78,7 +78,7 @@ function Render-Sourcefiles {
7878 )
7979 foreach ($sourcefile in $sourcefiles ) {
8080 $sourcefileName = $sourcefile .' @name'
81- $destination = " $destinationDirectory \ sources\ $sourcefileName .html"
81+ $destination = " $destinationDirectory / sources/ $sourcefileName .html"
8282 $directoryDepth = ($destination -split ' [\\/]' ).Count - ($destinationDirectory -split ' [\\/]' ).Count - 1
8383 $sourceCodePath = (Resolve-Path " $sourcesDirectory /$sourcefileName " ).Path
8484 $sourceCode = Get-Content - Raw - Path $sourceCodePath
@@ -118,7 +118,7 @@ function Render-Packages {
118118
119119 foreach ($package in $packages ) {
120120 $packageName = $package .' @name'
121- $destination = " $destinationDirectory \ packages\ $packageName .html"
121+ $destination = " $destinationDirectory / packages/ $packageName .html"
122122 $directoryDepth = ($destination -split ' [\\/]' ).Count - ($destinationDirectory -split ' [\\/]' ).Count - 1
123123
124124 $content = Render- IndexPage `
0 commit comments