Example Guide
An example of a basic code block
foreach ($file in $files) { Write-Host $file}An example of a basic code block, formatted with PowerShell
foreach ($file in $files) { Write-Host $file}An example of a basic code block, formatted with PowerShell with no frame
foreach ($file in $files) { Write-Host $file}An example of a basic code block, with a title
foreach ($file in $files) { Write-Host $file}An example of a basic code block, with a title and a code frame
foreach ($file in $files) { Write-Host $file}A more complex example of a code block
foreach ($file in $files) { Write-Host $file Write-Host $file.Path}An example of simple asides