Commit e7c2357 1 parent eabcdd7 commit e7c2357 Copy full SHA for e7c2357
File tree 4 files changed +4
-1010
lines changed
4 files changed +4
-1010
lines changed Original file line number Diff line number Diff line change @@ -386,7 +386,6 @@ foreach ($source_folder in $source_folders) {
386
386
$docfx_dir = [System.IO.Path ]::GetFullPath((Join-Path $directory $source_folder ))
387
387
$docfx_path = [System.IO.Path ]::GetFullPath((Join-Path $docfx_dir ' docfx.json' ))
388
388
$toc_path = [System.IO.Path ]::GetFullPath((Join-Path $docfx_dir ' toc.yml' ))
389
- $index_html_path = [System.IO.Path ]::GetFullPath((Join-Path $docfx_dir ' index.html.yml' ))
390
389
$index_path = [System.IO.Path ]::GetFullPath((Join-Path $docfx_dir ' index.yml' ))
391
390
392
391
Write-Verbose " Found docfx json: $docfx_path "
@@ -438,15 +437,10 @@ profiles:
438
437
ForEach-Object - Begin { return $content } - Process { Format-Yaml - object $objects }
439
438
| Out-File - filepath $toc_path - encoding utf8
440
439
441
- # writing to Index file
442
- ForEach-Object - Begin { return $IndexFilecontent } - Process { Format-Index - Yaml - object $objects }
443
- | Out-File - filepath $index_html_path - encoding utf8
444
-
445
440
# writing to Index file
446
441
ForEach-Object - Begin { return $IndexFilecontent } - Process { Format-Index - Yaml - object $objects }
447
442
| Out-File - filepath $index_path - encoding utf8
448
443
449
444
Write-Verbose " Generated table of contents at $toc_path "
450
- Write-Verbose " Generated Index file at $index_html_path "
451
445
Write-Verbose " Generated Index file at $index_path "
452
446
}
You can’t perform that action at this time.
0 commit comments