Update the comment based help text

This commit is contained in:
Markus Fleschutz
2021-10-12 21:51:51 +02:00
parent acc88e247d
commit 27bd366394
53 changed files with 112 additions and 97 deletions

View File

@ -5,7 +5,7 @@
This script exports the comment based help of all PowerShell scripts as manuals.
.EXAMPLE
PS> ./export-to-manuals.ps1
Found 264 scripts, starting export to /home/markus/PowerShell/Docs...
Found 264 scripts, exporting to /home/markus/PowerShell/Docs...
✔️ exported 264 scripts as manuals in 28 sec
.NOTES
Author: Markus Fleschutz · License: CC0
@ -21,7 +21,7 @@ try {
$StopWatch = [system.diagnostics.stopwatch]::startNew()
$Scripts = Get-ChildItem "$FilePattern"
"Found $($Scripts.Count) scripts, starting export to $TargetDir..."
"Found $($Scripts.Count) scripts, exporting to $TargetDir..."
foreach ($Script in $Scripts) {
& "$PSScriptRoot/convert-ps2md" "$Script" > "$TargetDir/$($Script.BaseName).md"