-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOpenGraph.psd1
More file actions
40 lines (34 loc) · 1.26 KB
/
OpenGraph.psd1
File metadata and controls
40 lines (34 loc) · 1.26 KB
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
@{
RootModule = 'OpenGraph.psm1'
ModuleVersion = '0.1.1'
GUID = 'be4e4070-1ea6-4a2e-8b6a-c6b7755e5ace'
Author = 'JamesBrundage'
CompanyName = 'Start-Automating'
Copyright = '(c) 2025 Start-Automating'
Description = 'Get OpenGraph with PowerShell'
FunctionsToExport = 'Get-OpenGraph'
AliasesToExport = 'OpenGraph', 'ogp'
TypesToProcess = 'OpenGraph.types.ps1xml'
PrivateData = @{
PSData = @{
Tags = @('OpenGraph','SEO','Web','PoshWeb','OpenGraphProtocol')
ProjectURI = 'https://github.com/PoshWeb/OpenGraph'
LicenseURI = 'https://github.com/PoshWeb/OpenGraph/blob/main/LICENSE'
ReleaseNotes = @'
## OpenGraph 0.1.1
* Simplified Module Scaffolding (#14)
* Supporting open or closed tags (#15)
* `Get-OpenGraph -Html` supports direct content (#16)
* `Get-OpenGraph -Url` is now positional and pipeable (#17)
* Improving README (#18)
---
Please:
* [Like](https://github.com/PoshWeb/OpenGraph)
* [Share](https://github.com/PoshWeb/OpenGraph)
* [Subscribe](https://github.com/PoshWeb/)
* [Support](https://github.com/sponsors/StartAutomating)
Additional history found available in the [CHANGELOG.md](https://github.com/PoshWeb/OpenGraph/blob/main/CHANGELOG.md)
'@
}
}
}