Private/Get-Markdown.ps1

function Get-Markdown {
    [CmdletBinding()]
    Param()
    Process {
        $Script:markdown -join "`n"
    }
}