We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 132abc7 commit 3145ad6Copy full SHA for 3145ad6
Build/Neocities.HelpOut.ps1
@@ -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