PowerShell/docs/export-to-manuals.md

94 lines
2.6 KiB
Markdown
Raw Permalink Normal View History

2024-11-08 12:38:20 +01:00
The *export-to-manuals.ps1* Script
===========================
2021-11-08 21:36:42 +01:00
2024-01-25 13:37:12 +01:00
This PowerShell script exports the comment-based help of all PowerShell scripts as manuals.
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Parameters
----------
2021-11-08 21:36:42 +01:00
```powershell
2024-11-08 12:35:11 +01:00
/home/markus/Repos/PowerShell/scripts/export-to-manuals.ps1 [[-filePattern] <String>] [[-targetDir] <String>] [<CommonParameters>]
2021-11-08 21:36:42 +01:00
2024-01-25 13:37:12 +01:00
-filePattern <String>
2021-11-08 21:36:42 +01:00
Required? false
Position? 1
Default value "$PSScriptRoot/*.ps1"
Accept pipeline input? false
Accept wildcard characters? false
2024-01-25 13:37:12 +01:00
-targetDir <String>
2021-11-08 21:36:42 +01:00
Required? false
Position? 2
2023-12-07 20:24:45 +01:00
Default value "$PSScriptRoot/../docs"
2021-11-08 21:36:42 +01:00
Accept pipeline input? false
Accept wildcard characters? false
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-07-29 10:04:38 +02:00
Example
-------
2021-11-08 21:36:42 +01:00
```powershell
PS> ./export-to-manuals.ps1
2023-12-07 20:24:45 +01:00
⏳ (1/2) Reading PowerShell scripts from /home/mf/PowerShell/scripts/*.ps1 ...
⏳ (2/2) Exporting Markdown manuals to /home/mf/PowerShell/docs ...
2024-11-08 12:35:11 +01:00
✅ Exported 518 Markdown manuals in 28 sec.
2021-11-08 21:36:42 +01:00
```
2023-07-29 10:04:38 +02:00
Notes
-----
2022-11-17 19:46:02 +01:00
Author: Markus Fleschutz | License: CC0
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Related Links
-------------
2021-11-08 21:36:42 +01:00
https://github.com/fleschutz/PowerShell
2023-07-29 10:04:38 +02:00
Script Content
--------------
2022-11-17 20:05:34 +01:00
```powershell
2022-11-17 20:02:26 +01:00
<#
.SYNOPSIS
Exports all scripts as manuals
.DESCRIPTION
2024-01-25 13:37:12 +01:00
This PowerShell script exports the comment-based help of all PowerShell scripts as manuals.
2022-11-17 20:02:26 +01:00
.EXAMPLE
PS> ./export-to-manuals.ps1
2023-12-07 20:24:45 +01:00
⏳ (1/2) Reading PowerShell scripts from /home/mf/PowerShell/scripts/*.ps1 ...
⏳ (2/2) Exporting Markdown manuals to /home/mf/PowerShell/docs ...
2024-11-08 12:35:11 +01:00
✅ Exported 518 Markdown manuals in 28 sec.
2022-11-17 20:02:26 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
#requires -version 2
2024-01-25 13:37:12 +01:00
param([string]$filePattern = "$PSScriptRoot/*.ps1", [string]$targetDir = "$PSScriptRoot/../docs")
2022-11-17 20:02:26 +01:00
try {
2024-01-25 13:37:12 +01:00
$stopWatch = [system.diagnostics.stopwatch]::startNew()
2022-11-17 20:02:26 +01:00
2024-01-25 13:37:12 +01:00
"⏳ (1/2) Reading PowerShell scripts from $filePattern ..."
$scripts = Get-ChildItem "$filePattern"
2022-11-17 20:02:26 +01:00
2024-01-25 13:37:12 +01:00
"⏳ (2/2) Exporting Markdown manuals to $targetDir ..."
foreach ($script in $scripts) {
& "$PSScriptRoot/convert-ps2md.ps1" "$script" > "$targetDir/$($script.BaseName).md"
2022-11-17 20:02:26 +01:00
}
2024-01-25 13:37:12 +01:00
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
2024-11-08 12:35:11 +01:00
"✅ Exported $($scripts.Count) Markdown manuals in $elapsed sec."
2022-11-17 20:02:26 +01:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
2022-11-17 20:05:34 +01:00
```
2022-11-17 20:02:26 +01:00
2024-11-20 11:52:20 +01:00
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:53)*