Latest PSU.
So I can show a .html page with no issues but when I click on the links that I have in the menu of the .html file it reloads the hole page instead of taking me to the proper section in the .html file. Outside of PSU it work flawless.
My PSU code: ($LatestRelease is the path to the .html file.)
New-UDGrid -Item -ExtraLargeSize 6 -LargeSize 6 -MediumSize 6 -SmallSize 6 -Children {
New-UDStyle -Style ".ud-mu-cardbody { display: block !important; }" -Content {
New-UDCard -Title "Nyheter i senaste uppdateringen" -Content {
New-UDHtml -Markup ([System.IO.File]::ReadAllText($LatestRelease))
}
}
}
Here is the menu code from the .html file:
<ul>
<li><a href="#SectionOne">SectionOne</a></li>
<li><a href="#SectionTwo">SectionTwo</a>
Any idé of how to get it to work?