Update the manuals

This commit is contained in:
Markus Fleschutz
2023-07-29 10:15:44 +02:00
parent 834eaca343
commit 2abcd039c2
554 changed files with 1615 additions and 1615 deletions

View File

@ -56,7 +56,7 @@ try {
$full = Get-Help $filename -Full
"PS> *$($ScriptName)*"
"PS> *./$($ScriptName)*"
"===================="
$Description = ($full.description | Out-String).Trim()
@ -72,7 +72,7 @@ try {
"----------"
"``````powershell"
$Syntax = (($full.syntax | Out-String) -replace "`r`n", "`r`n").Trim()
$Syntax = (($Syntax | Out-String) -replace "/home/mf/Repos/PowerShell/Scripts/", "PS> ")
$Syntax = (($Syntax | Out-String) -replace "/home/mf/Repos/PowerShell/Scripts/", "PS> ./")
if ($Syntax -ne "") {
"$Syntax"
}