@@ -21,9 +21,9 @@ Copy-Item -Path (Join-Path $ProjectRoot "images" "*") -Destination $images -Recu
2121Copy-Item - Path (Join-Path $ProjectRoot " org.mixedrealitytoolkit.standardassets" " Textures" " Logos" " MRTK_Logo_White.png" ) - Destination $images - Force
2222Copy-Item - Path (Join-Path $ProjectRoot " org.mixedrealitytoolkit.standardassets" " Textures" " Logos" " IconMRTKLogo.png" ) - Destination $images - Force
2323
24- $licenseDestination = Join-Path $docs " LICENSE.md"
25- # Create home page, add front matter, and copy content
26- New-Item - Path $licenseDestination - ItemType File - Force - Value @"
24+ $destination = Join-Path $docs " LICENSE.md"
25+ # Create page, add front matter, and copy content
26+ New-Item - Path $destination - ItemType File - Force - Value @"
2727---
2828title: License
2929nav_order: 1
@@ -32,19 +32,45 @@ parent: Home
3232
3333
3434"@
35- Add-Content - Path $licenseDestination - Value (Get-Content - Path (Join-Path $ProjectRoot " LICENSE.md" ))
35+ Add-Content - Path $destination - Value (Get-Content - Path (Join-Path $ProjectRoot " LICENSE.md" ))
3636
37- $indexDestination = Join-Path $docs " index.md"
38- # Create home page, add front matter, and copy content
39- New-Item - Path $indexDestination - ItemType File - Force - Value @"
37+ $destination = Join-Path $docs " MAINTAINERS.md"
38+ # Create page, add front matter, and copy content
39+ New-Item - Path $destination - ItemType File - Force - Value @"
40+ ---
41+ title: Maintainers
42+ nav_order: 2
43+ parent: Home
44+ ---
45+
46+
47+ "@
48+ Add-Content - Path $destination - Value (Get-Content - Path (Join-Path $ProjectRoot " MAINTAINERS.md" ))
49+
50+ $destination = Join-Path $docs " GOVERNANCE.md"
51+ # Create page, add front matter, and copy content
52+ New-Item - Path $destination - ItemType File - Force - Value @"
53+ ---
54+ title: Governance
55+ nav_order: 3
56+ parent: Home
57+ ---
58+
59+
60+ "@
61+ Add-Content - Path $destination - Value (Get-Content - Path (Join-Path $ProjectRoot " GOVERNANCE.md" ))
62+
63+ $destination = Join-Path $docs " index.md"
64+ # Create page, add front matter, and copy content
65+ New-Item - Path $destination - ItemType File - Force - Value @"
4066---
4167title: Home
4268nav_order: 1
4369---
4470
4571
4672"@
47- Add-Content - Path $indexDestination - Value (Get-Content - Path (Join-Path $ProjectRoot " README.md" ))
73+ Add-Content - Path $destination - Value (Get-Content - Path (Join-Path $ProjectRoot " README.md" ))
4874
4975# Convert GitHub admonitions to just-the-docs syntax for in-place docs files
5076# We leave them checked-in so they render correctly in the GitHub repo, but we convert them for Pages
0 commit comments