Skip to content

Commit 3145ad6

Browse files
author
James Brundage
committed
feat: Neocities HelpOut ( Fixes #8 )
1 parent 132abc7 commit 3145ad6

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Build/Neocities.HelpOut.ps1

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#requires -Module HelpOut
2+
3+
#region Load the Module
4+
$ModuleName = 'Neocities'
5+
Push-Location ($PSScriptRoot | Split-Path)
6+
if (-not (Get-Module $ModuleName)) {
7+
Import-Module .\ -Global -PassThru | Out-Host
8+
}
9+
#endregion Load the Module
10+
11+
# This will save the MarkdownHelp to the docs folder, and output all of the files created.
12+
Save-MarkdownHelp -PassThru -Module $ModuleName -ExcludeCommandType Alias
13+
14+
Pop-Location

0 commit comments

Comments
 (0)