-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathPScribo.psd1
45 lines (45 loc) · 1.76 KB
/
PScribo.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@{
RootModule = 'PScribo.psm1'
ModuleVersion = '0.10.0'
GUID = '058eab05-b7bc-4f8b-a2d1-737cc664b12b'
Author = 'Iain Brighton'
CompanyName = 'Virtual Engine'
Copyright = '(c) 2022 Iain Brighton. All rights reserved.'
Description = 'PScribo documentation Powershell module/framework.'
PowerShellVersion = '3.0'
FunctionsToExport = @(
'BlankLine',
'Document',
'DocumentOption',
'Export-Document',
'Footer',
'Header',
'Image',
'Item',
'LineBreak',
'List',
'NumberStyle',
'PageBreak',
'Paragraph',
'Section',
'Set-Style',
'Style',
'Table',
'TableStyle',
'Text',
'TOC',
'Write-PScriboMessage',
'Get-WordListLevel'
)
AliasesToExport = @(
'GlobalOption'
)
PrivateData = @{
PSData = @{
Tags = @('Powershell','PScribo','Documentation','Framework','VirtualEngine','Windows','Linux','MacOS','PSEdition_Desktop','PSEdition_Core','Word','Html')
LicenseUri = 'https://raw.githubusercontent.com/iainbrighton/PScribo/master/LICENSE'
ProjectUri = 'http://github.com/iainbrighton/PScribo'
# IconUri = '';
}
}
}