PipeScript.HelpOut.ps1

#require -Module HelpOut
Push-Location $PSScriptRoot

$PipeScriptLoaded = Get-Module PipeScript
if (-not $PipeScriptLoaded) {
    $PipeScriptLoaded = Get-ChildItem -Recurse -Filter "*.psd1" | Where-Object Name -like 'PipeScript*' | Import-Module -Name { $_.FullName } -Force -PassThru
}
if ($PipeScriptLoaded) {
    "::notice title=ModuleLoaded::PipeScript Loaded" | Out-Host
} else {
    "::error:: PipeScript not loaded" |Out-Host
}

Save-MarkdownHelp -Module PipeScript <#-ReplaceScriptName '\.psx\.ps1$' -ReplaceScriptNameWith '-Transpiler'#> -SkipCommandType Alias -PassThru -IncludeTopic *.help.txt  -IncludeExtension @(

) -Command (Get-Transpiler) -ReplaceCommandName '\.psx\.ps1$'

Pop-Location