Updated the Markdown manuals

This commit is contained in:
Markus Fleschutz
2023-12-07 20:24:45 +01:00
parent dafa6cf1d7
commit 1ffd91c5e2
605 changed files with 1927 additions and 1015 deletions

View File

@@ -20,7 +20,7 @@ PS> ./export-to-manuals.ps1 [[-FilePattern] <String>] [[-TargetDir] <String>] [<
Required? false
Position? 2
Default value "$PSScriptRoot/../Docs"
Default value "$PSScriptRoot/../docs"
Accept pipeline input? false
Accept wildcard characters? false
@@ -33,8 +33,8 @@ Example
-------
```powershell
PS> ./export-to-manuals.ps1
(1/2) Reading PowerShell scripts from /home/mf/PowerShell/Scripts/*.ps1 ...
(2/2) Exporting Markdown manuals to /home/mf/PowerShell/Scripts/../Docs ...
(1/2) Reading PowerShell scripts from /home/mf/PowerShell/scripts/*.ps1 ...
(2/2) Exporting Markdown manuals to /home/mf/PowerShell/docs ...
Exported 518 Markdown manuals in 28 sec
```
@@ -57,8 +57,8 @@ Script Content
This PowerShell script exports the comment based help of all PowerShell scripts as manuals.
.EXAMPLE
PS> ./export-to-manuals.ps1
⏳ (1/2) Reading PowerShell scripts from /home/mf/PowerShell/Scripts/*.ps1 ...
⏳ (2/2) Exporting Markdown manuals to /home/mf/PowerShell/Scripts/../Docs ...
⏳ (1/2) Reading PowerShell scripts from /home/mf/PowerShell/scripts/*.ps1 ...
⏳ (2/2) Exporting Markdown manuals to /home/mf/PowerShell/docs ...
✔️ Exported 518 Markdown manuals in 28 sec
.LINK
https://github.com/fleschutz/PowerShell
@@ -68,7 +68,7 @@ Script Content
#requires -version 2
param([string]$FilePattern = "$PSScriptRoot/*.ps1", [string]$TargetDir = "$PSScriptRoot/../Docs")
param([string]$FilePattern = "$PSScriptRoot/*.ps1", [string]$TargetDir = "$PSScriptRoot/../docs")
try {
$StopWatch = [system.diagnostics.stopwatch]::startNew()
@@ -90,4 +90,4 @@ try {
}
```
*(generated by convert-ps2md.ps1 using the comment-based help of export-to-manuals.ps1 as of 10/19/2023 08:11:37)*
*(generated by convert-ps2md.ps1 using the comment-based help of export-to-manuals.ps1 as of 12/07/2023 20:24:17)*