Product: PowerShell Universal
Version: 3.9.13
i have the following code block and it doesn’t look like it’s doing a carriage return as i expect:
New-UDGrid -Container -Children {
New-UDGrid -Item -ExtraSmallSize 8 -Children {
New-UDPaper -Elevation 2 -Children {
New-UDMarkdown -Markdown "# Server Lifecycle Management
Hello Wizards, welcome to the new lifecycle management app!
"
}
}
}
and this is how it renders:
am i missing something? thought i knew how to markdown lol.
TIA