Skip to content

Commit ad6c6e0

Browse files
committed
Generate documentation to markdown format #9
1 parent ed114fe commit ad6c6e0

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

helper/CreateDocumentation.ps1

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Import-Module -Name platyPS
2+
3+
$mdHelpParams = @{
4+
Module = 'FabricTools'
5+
OutputFolder = ".\documentation"
6+
AlphabeticParamsOrder = $true
7+
UseFullTypeName = $true
8+
WithModulePage = $true
9+
ExcludeDontShow = $false
10+
Encoding = [System.Text.Encoding]::UTF8
11+
ModulePagePath = ".\documentation\readme.md"
12+
}
13+
New-MarkdownHelp @mdHelpParams

0 commit comments

Comments
 (0)