Skip to content

Commit cb5e8e1

Browse files
authored
Update Build-Site.ps1
1 parent 4ec2a37 commit cb5e8e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pages/Build-Site.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,14 +159,14 @@ foreach ($cmdletPage in $cmdletPages)
159159
if (!$releasedcmdlets.Contains($cmdletPage.Name))
160160
{
161161
# Add a 1 to the cmdlet name if it's only available in the nightly build
162-
$cmdletIndexPageList = $cmdletIndexPageList + " ^1^"
162+
$cmdletIndexPageList = $cmdletIndexPageList + " <sup>1</sup>"
163163
}
164164

165165
# Check if the cmdlet is an alias
166166
if ($aliasCmdlets.Alias -contains $cmdletPage.BaseName)
167167
{
168168
# Add a 2 to the cmdlet name if it's an alias
169-
$cmdletIndexPageList = $cmdletIndexPageList + " ^2^"
169+
$cmdletIndexPageList = $cmdletIndexPageList + " <sup>2</sup>"
170170
}
171171

172172
$cmdletIndexPageList = $cmdletIndexPageList + "`n"

0 commit comments

Comments
 (0)