-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathHelpOut.HelpOut.ps1
More file actions
13 lines (9 loc) · 717 Bytes
/
HelpOut.HelpOut.ps1
File metadata and controls
13 lines (9 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
#requires -Module HelpOut
# The HelpOut action does not load your module. If you were writing your own HelpOut.ps1 file, you'd want to load the module here.
# This will save the MarkdownHelp to the docs folder, and output all of the files created.
Save-MarkdownHelp -PassThru -Module HelpOut # -IncludeYamlHeader
# Outputting a file will check the change in (using the message of the current commit)
# If the file has a .CommitMessage property, that will be used instead.
# This will generate the MAML for the module (and output the files changed).
# MAML loads faster than inline help.
Install-MAML -Module HelpOut -PassThru -NoComment # -Minify (you can minify if you want to for additional file size savings)