File tree 3 files changed +216
-26
lines changed
3 files changed +216
-26
lines changed Original file line number Diff line number Diff line change @@ -383,7 +383,8 @@ foreach ($source_folder in $source_folders) {
383
383
$docfx_dir = [System.IO.Path ]::GetFullPath((Join-Path $directory $source_folder ))
384
384
$docfx_path = [System.IO.Path ]::GetFullPath((Join-Path $docfx_dir ' docfx.json' ))
385
385
$toc_path = [System.IO.Path ]::GetFullPath((Join-Path $docfx_dir ' toc.yml' ))
386
- $index_path = [System.IO.Path ]::GetFullPath((Join-Path $docfx_dir ' index.html.yml' ))
386
+ $index_html_path = [System.IO.Path ]::GetFullPath((Join-Path $docfx_dir ' index.html.yml' ))
387
+ $index_path = [System.IO.Path ]::GetFullPath((Join-Path $docfx_dir ' index.yml' ))
387
388
388
389
Write-Verbose " Found docfx json: $docfx_path "
389
390
@@ -434,10 +435,15 @@ profiles:
434
435
ForEach-Object - Begin { return $content } - Process { Format-Yaml - object $objects }
435
436
| Out-File - filepath $toc_path - encoding utf8
436
437
438
+ # writing to Index file
439
+ ForEach-Object - Begin { return $IndexFilecontent } - Process { Format-Index - Yaml - object $objects }
440
+ | Out-File - filepath $index_html_path - encoding utf8
441
+
437
442
# writing to Index file
438
443
ForEach-Object - Begin { return $IndexFilecontent } - Process { Format-Index - Yaml - object $objects }
439
444
| Out-File - filepath $index_path - encoding utf8
440
445
441
446
Write-Verbose " Generated table of contents at $toc_path "
447
+ Write-Verbose " Generated Index file at $index_html_path "
442
448
Write-Verbose " Generated Index file at $index_path "
443
449
}
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ profiles:
182
182
twitter : " Bob1German"
183
183
- uid : advocates.brian-benz
184
184
name : Brian Benz
185
- tagline : Java AND AI
185
+ tagline : Java / AI / DevOps / Cloud
186
186
image :
187
187
src : media/profiles/brian-benz.png
188
188
alt : " Brian Benz Principal Cloud Developer Advocate"
You can’t perform that action at this time.
0 commit comments