1
0
mirror of https://github.com/jaapbrasser/SharedScripts.git synced 2025-12-24 21:51:38 +02:00

Added parameter help

This commit is contained in:
Jaap Brasser
2019-10-04 11:46:12 -06:00
parent f844341b62
commit 0ff324bb56

View File

@@ -1,8 +1,12 @@
function New-GitHubMarkdownIndex {
param(
# The path of the file structure that will be mapped in markdown
[string] $Path = 'C:\Temp\Events',
# The GitHub uri that files will be linked to
[string] $GitHubUri = 'https://github.com/jaapbrasser/events/tree/master',
[string[]] $IncludeExtensions = @('.md','pdf','.123','123','234','.234'),
# Included file types, specified by extension
[string[]] $IncludeExtensions = @('.md','pdf'),
# Whether to use clip.exe or to output to console
[switch] $NoClipBoard
)