There are a number of ways to signal PowerShell line continuation in your code. probably the most common is to have a pipeline symbol at the end of the line:
Get-Process |
Sort-Object -Property CPU -Descending -Top 5
because there’s nothing after… Read the full text.